-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (27 loc) · 911 Bytes
/
Copy pathdeploy.yml
File metadata and controls
33 lines (27 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Deploy sitaraa.html to S3 + CloudFront
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure AWS credentials (Access Keys)
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Upload sitaraa.html to S3
run: |
aws s3 cp sitaraa.html s3://siddharth-gupta-test/sitaraa.html \
--cache-control "max-age=0,no-cache,no-store,must-revalidate" \
--content-type "text/html"
- name: Invalidate CloudFront cache
run: |
aws cloudfront create-invalidation \
--distribution-id E3AI1EJPXOOK6Z \
--paths "/*"