ci: move to pyuploadtool for release orchestration

This commit is contained in:
Srevin Saju 2021-09-20 00:08:11 +03:00
parent 557933d94d
commit 21b51926df
No known key found for this signature in database
GPG key ID: 1007816766D390D7

View file

@ -76,31 +76,17 @@ jobs:
mkdir dist mkdir dist
mv scrcpy*.AppImage* dist/ mv scrcpy*.AppImage* dist/
- name: Upload Appimage
uses: actions/upload-artifact@v1.0.0
with:
name: scrcpy-continuous-x86_64.AppImage
path: 'scrcpy/dist/'
Release:
needs: [ubuntu]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v1
with:
name: scrcpy-continuous-x86_64.AppImage
- name: Release
uses: marvinpinto/action-automatic-releases@latest
if: github.ref == 'refs/heads/master'
with:
automatic_release_tag: continuous
title: Scrcpy AppImage Release
prerelease: false
files: |
scrcpy-continuous-x86_64.AppImage
repo_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create release and upload artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_CONTINUOUS_RELEASE_TAG: ${{ matrix.build_type }}
CHANGELOG_TYPE: conventional
run: |
export APPIMAGE_EXTRACT_AND_RUN=1
export GITHUB_CONTINUOUS_RELEASE_TAG=continuous
export GITHUB_CONTINUOUS_RELEASE_TYPE=prerelease
export GITHUB_CONTINUOUS_RELEASE_NAME="Continuous build"
wget -q https://github.com/srevinsaju/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage && chmod +x pyuploadtool-x86_64.AppImage
./pyuploadtool-x86_64.AppImage scrcpy/dist/*.AppImage*