Force size adjustment for download dialog to ensure minimum size acco… #24
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
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- run: source .github/scripts/build.sh | |
shell: bash | |
- uses: rickstaa/action-create-tag@v1 | |
with: | |
tag: continuous | |
force_push_tag: true | |
- uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
removeArtifacts: true | |
tag: continuous | |
name: Continuous build | |
body: AppImage built automatically from latest commit. | |
prerelease: true | |
artifacts: "QMediathekView*.AppImage*" | |
token: ${{ secrets.GITHUB_TOKEN }} |