Skip to content

Commit

Permalink
remove dispatch from appimage_test bc broken, allow appimage_deploy w…
Browse files Browse the repository at this point in the history
…hen test is skipped
  • Loading branch information
abe-winter committed Jan 23, 2024
1 parent 972c90f commit 9156fa1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
appimage_test:
name: AppImage Test
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
if: github.event_name == 'push'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -227,6 +227,7 @@ jobs:
appimage_deploy:
name: AppImage Deploy
needs: [appimage_test, appimage-32bit]
if: always() && needs.appimage-32bit.result == 'success' && contains(fromJSON('["success", "skipped"]'), needs.appimage_test.result)
runs-on: ubuntu-latest
env:
channel: ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
Expand Down

0 comments on commit 9156fa1

Please sign in to comment.