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 31e0f19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ 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 "*" \
--exclude "*/*" \
--include "*.gz" \
--include "*.txt" \
--include "*.txt"
- name: Set Artifacts Retention
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
Expand Down

0 comments on commit 31e0f19

Please sign in to comment.