From b73517ea037a6882ceb10fe6aae03750919eb1e9 Mon Sep 17 00:00:00 2001 From: mschaab Date: Tue, 12 Nov 2024 18:06:53 -0300 Subject: [PATCH] Fixing conditional for artifacts --- .github/workflows/github-actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index ed4d8e0..23e418e 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -22,7 +22,7 @@ jobs: # Might want to remove this step - name: Archive production artifacts ⬆️ # Changed from target 'master' to 'develop' because the rules for the repo are locking my uploads - if: ${{ github.event_name == 'pull_request' && github.pull_request_target == 'develop' }} + if: github.event.pull_request.base.ref == 'develop' uses: actions/upload-artifact@v4 with: name: Artifacts