From afda8a4981a9a6b861a315e5562ddf14b4af6538 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Fri, 26 Sep 2025 15:39:05 +0200 Subject: [PATCH] only create AUR PR if it is a stable release --- .github/workflows/appimage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index 40ea6638f..d8f2f9aa4 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -199,7 +199,7 @@ jobs: name: Create PR for aur-bin repo needs: [build, get-version] runs-on: ubuntu-latest - if: github.event_name == 'release' + if: github.event_name == 'release' && needs.get-version.outputs.versionType == 'stable' steps: - name: Download AppImages uses: actions/download-artifact@v5