Skip to content

Merge pull request #78 from pkwong4321/patch-1 #75

Merge pull request #78 from pkwong4321/patch-1

Merge pull request #78 from pkwong4321/patch-1 #75

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
appimage:
strategy:
fail-fast: false
matrix:
ARCH: [x86_64, i686, aarch64, armhf]
name: AppImage ${{ matrix.ARCH }}
runs-on: ubuntu-20.04
env:
ARCH: ${{ matrix.ARCH }}
DIST: bionic
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up QEMU integration for Docker
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Build AppImage in Docker
run: bash -ex ci/build-in-docker.sh
- name: Archive artifacts
uses: actions/upload-artifact@v2
with:
name: AppImage ${{ matrix.ARCH }}
path: zsync*.AppImage*
upload:
name: Create release and upload artifacts
needs:
- appimage
runs-on: ubuntu-20.04
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
- name: Inspect directory after downloading artifacts
run: ls -alFR
- name: Create release and upload artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage
chmod +x pyuploadtool-x86_64.AppImage
./pyuploadtool-x86_64.AppImage **/zsync*.AppImage*