From b8503a2796720fa4694f1226313c79e37cf592e0 Mon Sep 17 00:00:00 2001 From: eimexdev <130890337+eimexdev@users.noreply.github.com> Date: Thu, 21 May 2026 18:49:23 -0700 Subject: [PATCH] Avoid uploading installer artifacts on PR builds --- .github/workflows/build-installers.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build-installers.yml b/.github/workflows/build-installers.yml index 6a7598a..a13bee3 100644 --- a/.github/workflows/build-installers.yml +++ b/.github/workflows/build-installers.yml @@ -68,9 +68,11 @@ jobs: run: python scripts/build_installers.py --platform ${{ matrix.platform }} - name: Upload installer artifact + if: github.event_name != 'pull_request' uses: actions/upload-artifact@v6 with: name: ${{ inputs.artifact_prefix && format('{0}-{1}', inputs.artifact_prefix, matrix.artifact_name) || matrix.artifact_name }} path: ${{ matrix.artifact_path }} compression-level: 0 + retention-days: 7 if-no-files-found: error