Deploy to S3 and Invalidate CloudFront with Assume Role #11
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 to S3 and Invalidate CloudFront with Assume Role | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Configure AWS credentials using Assume Role | |
uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
role-to-assume: arn:aws:iam::195210670873:role/johnbrennan.codes-trust-role | |
aws-region: us-west-2 | |
role-session-name: johnbrennan.codes-trust-role | |
- name: Sync S3 bucket | |
run: | | |
aws s3 sync . ${{ secrets.PORTFOLIO_BUCKET }} --delete | |
- name: Invalidate CloudFront cache | |
run: | | |
aws cloudfront create-invalidation \ | |
--distribution-id ${{ secrets.PORTFOLIO_CLOUDFRONT_DISTRIBUTION_ID }} \ | |
--paths "/*" |