From 9156fa1f6614517a64fdce384e2b98c346c72b77 Mon Sep 17 00:00:00 2001 From: Abe Winter Date: Mon, 22 Jan 2024 19:40:51 -0500 Subject: [PATCH] remove dispatch from appimage_test bc broken, allow appimage_deploy when test is skipped --- .github/workflows/appimage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index 5aa6201d42b..f7ea939e759 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -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: @@ -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 }}