Skip to content

vendor: update ffmpeg to n8.1-5-g3ec48e4bc6 #350

vendor: update ffmpeg to n8.1-5-g3ec48e4bc6

vendor: update ffmpeg to n8.1-5-g3ec48e4bc6 #350

Workflow file for this run

name: Build and deploy
on:
push: {}
jobs:
build:
name: Build
strategy:
matrix:
include:
- arch: aarch64
runs-on: ubuntu-24.04-arm
bundle: ""
- arch: x86_64
runs-on: ubuntu-24.04
bundle: ""
- arch: aarch64
runs-on: ubuntu-24.04-arm
bundle: ffmpeg
- arch: x86_64
runs-on: ubuntu-24.04
bundle: ffmpeg
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install -U --upgrade-strategy=eager -r requirements.txt
- name: appimage
run: |
SOURCE_DATE_EPOCH=$(git show -s --format=%ct) ./build.sh --updinfo --bundle=${{ matrix.bundle }}
- uses: actions/upload-artifact@v7
with:
archive: false
path: dist/*.AppImage
- uses: actions/upload-artifact@v7
with:
archive: false
path: dist/*.zsync
deploy:
name: Deploy
needs:
- build
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- run: mkdir dist
- uses: actions/download-artifact@v8
with:
skip-decompress: true
merge-multiple: true
path: ./dist
- run: ./deploy.sh dist/*
env:
RELEASES_API_KEY: ${{ secrets.GITHUB_TOKEN }}