Skip to content

Commit

Permalink
fix: artifacts.yml action
Browse files Browse the repository at this point in the history
  • Loading branch information
mrekucci committed Aug 1, 2024
1 parent 11e33f9 commit de5bdca
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,12 @@ jobs:

- name: Upload Artifacts to AWS S3
run: |
aws s3 cp ./dist/ s3://${{ secrets.AWS_S3_BUCKET }} \
aws s3 cp /tmp/dist/ s3://${{ secrets.AWS_S3_BUCKET }} \
--recursive \
--exclude "*" \
--include "*.gz" \
--include "*.txt" \
--exclude "*/" \
--include "*/\*.gz" \
--include "*/\*.txt"
- name: Set Artifacts Retention
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
Expand Down

0 comments on commit de5bdca

Please sign in to comment.