From 6a4a19570e85f763fd3b19d6fd3272ac62e8b269 Mon Sep 17 00:00:00 2001 From: Tim Felgentreff Date: Sun, 15 Jan 2023 08:38:39 +0100 Subject: [PATCH] only deploy on master pushes --- .github/workflows/appimage.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index afc789541..02f30839e 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -19,6 +19,7 @@ jobs: run: bash -x ./tools/build_appimage.sh ${{ matrix.game.id }} ${{ matrix.game.name }} - name: Create continuous release uses: ncipollo/release-action@v1 + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} with: allowUpdates: true artifacts: "*.AppImage*"