Skip to content

update monior content according to lizs feedback #7

update monior content according to lizs feedback

update monior content according to lizs feedback #7

Workflow file for this run

name: Deploy to S3 and Invalidate CloudFront
on:
push:
branches:
- develop
paths:
- 'src/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Sync files to S3
run: |
aws s3 sync src/ s3://${{ secrets.S3_BUCKET_NAME }}/
- name: Invalidate CloudFront distribution
run: |
aws cloudfront create-invalidation \
--distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} \
--paths "/*"