Skip to content

Commit

Permalink
fix: if
Browse files Browse the repository at this point in the history
  • Loading branch information
skylar-simoncelli authored Jan 23, 2025
1 parent a48bcab commit dd005a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ jobs:
permissions:
id-token: write
contents: write
if: ${{ needs.upload-to-s3.result == 'success' || needs.download-from-s3.result == 'success' }}
if: >
(needs.upload-to-s3.result == 'success' || needs.upload-to-s3.result == 'skipped') &&
(needs.download-from-s3.result == 'success' || needs.download-from-s3.result == 'skipped')
steps:
- name: Artifacts Ready
run: |
Expand Down

0 comments on commit dd005a8

Please sign in to comment.