Minor change to test gh deploy action #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Website | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name : Checkout Repository | |
uses : actions/checkout@v3 | |
- name : Configure AWS | |
uses : aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ID }} | |
aws-region: us-east-1 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.10.0' | |
- name : Install Modules | |
run: npm ci | |
- name : Build Application | |
run: npm run build | |
- name : Deploy to s3 | |
run: aws s3 sync ./build s3://${{ secrets.BUCKET_NAME }} | |
- name : Create CloudFront Invalidation | |
run : aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/*" |