Skip to content

Commit

Permalink
Fixing conditional for artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mschaab-SA committed Nov 12, 2024
1 parent 1b790b5 commit b73517e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b73517e

Please sign in to comment.