Skip to content

build: refactor build script #244

build: refactor build script

build: refactor build script #244

Workflow file for this run

name: Build and deploy
on:
push: {}
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
arch:
- aarch64
- x86_64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install -U --upgrade-strategy=eager -r requirements.txt
- name: docker qemu multi-arch
if: matrix.arch != 'x86_64'
run: |
docker run --rm --privileged multiarch/qemu-user-static --reset --persistent yes
- name: appimage
run: |
SOURCE_DATE_EPOCH=$(git show -s --format=%ct) ./build.sh ${{ matrix.arch }}
- uses: actions/upload-artifact@v4
with:
name: appimage-${{ matrix.arch }}
path: dist/*.AppImage
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@v4
- run: mkdir -p dist
- uses: actions/download-artifact@v4
with:
path: dist
- run: ./deploy.sh dist/**/*.AppImage
env:
RELEASES_API_KEY: ${{ secrets.GITHUB_TOKEN }}