Skip to content

Commit

Permalink
fix: yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kcwww committed Apr 21, 2024
1 parent 11f23c7 commit 1113630
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/tempFrontDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,12 @@ jobs:
BUCKET_NAME: ${{ secrets.AWS_S3_BUCKET_NAME }}
run: |
# Upload all files first, then apply specific settings for compressed files
# aws s3 sync ./front/dist s3://$BUCKET_NAME --delete
aws s3 sync ./front/dist s3://$BUCKET_NAME --exclude '*' \
--include '*.js.gz' --content-encoding 'gzip' --content-type 'application/javascript' \
--include '*.svg.gz' --content-encoding 'gzip' --content-type 'image/svg+xml' \
--include '*.ico.gz' --content-encoding 'gzip' --content-type 'image/x-icon' \
--include '*.ttf.gz' --content-encoding 'gzip' --content-type 'font/ttf' \
--include '*.woff.gz' --content-encoding 'gzip' --content-type 'font/woff' \
--include '*.mp3.gz' --content-encoding 'gzip' --content-type 'audio/mpeg'
aws s3 sync ./front/dist s3://$BUCKET_NAME --exclude '*' --include '*.js.gz' --content-encoding 'gzip' --content-type 'application/javascript'
aws s3 sync ./front/dist s3://$BUCKET_NAME --exclude '*' --include '*.svg.gz' --content-encoding 'gzip' --content-type 'image/svg+xml'
aws s3 sync ./front/dist s3://$BUCKET_NAME --exclude '*' --include '*.ico.gz' --content-encoding 'gzip' --content-type 'image/x-icon'
aws s3 sync ./front/dist s3://$BUCKET_NAME --exclude '*' --include '*.ttf.gz' --content-encoding 'gzip' --content-type 'font/ttf'
aws s3 sync ./front/dist s3://$BUCKET_NAME --exclude '*' --include '*.mp3.gz' --content-encoding 'gzip' --content-type 'audio/mpeg'
aws s3 sync ./front/dist s3://$BUCKET_NAME --delete
- name: CloudFront Invalidation
env:
Expand Down

0 comments on commit 1113630

Please sign in to comment.