We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e485518 commit e8e8248Copy full SHA for e8e8248
.github/workflows/deploy-fe.yml
@@ -54,15 +54,17 @@ jobs:
54
--exclude "index.html" \
55
--delete \
56
--acl public-read \
57
- --cache-control "max-age=31536000, immutable"
+ --cache-control "max-age=31536000, immutable" \
58
+ --checksum-mode WHEN_REQUIRED
59
60
# 2. index.html - 캐시 없음 (항상 최신 버전 유지)
61
aws s3 sync frontend/dist/ s3://${{ secrets.NCP_BUCKET }}/ \
62
--endpoint-url ${{ secrets.NCP_ENDPOINT }} \
63
--exclude "*" \
64
--include "index.html" \
65
- --cache-control "no-cache, no-store, must-revalidate"
66
+ --cache-control "no-cache, no-store, must-revalidate" \
67
68
69
- name: Deployment summary
70
run: |
0 commit comments