Update upload and download action to fix pyuploadtool #85
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous release | |
on: [push, pull_request] | |
jobs: | |
qa: | |
name: Quality Assurance | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
python3 -m pip install poetry | |
python3 -m poetry install | |
- name: Check code formatting with black | |
run: python3 -m poetry run black --check pyuploadtool/ | |
build-appimage: | |
name: Build AppImage | |
needs: | |
- qa | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build AppImage | |
run: | | |
wget https://github.com/TheAssassin/appimagecraft/releases/download/continuous/appimagecraft-x86_64.AppImage | |
chmod +x appimagecraft-x86_64.AppImage | |
./appimagecraft-x86_64.AppImage | |
- name: Archive artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: AppImage | |
path: pyuploadtool*.AppImage* | |
upload: | |
name: Create release and upload artifacts | |
needs: | |
- build-appimage | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
- name: Inspect directory after downloading artifacts | |
run: ls -alFR | |
- name: Create release and upload artifacts | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd AppImage | |
chmod +x pyuploadtool-x86_64.AppImage | |
./pyuploadtool-x86_64.AppImage pyuploadtool-x86_64.AppImage |