Skip to content

Commit

Permalink
fix GH deploy to S3 action
Browse files Browse the repository at this point in the history
  • Loading branch information
vanessacor committed May 11, 2024
1 parent 845719f commit 8e666ec
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: s3-deploy

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
- uses: actions/checkout@v4
- name: Configure AWS Credentials
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 }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Install Dependencies
run: npm ci
- name: Build App
run: npm run build
- name: Deploy app build to S3 bucket
run: aws s3 sync dist/ s3://vanessapoppe.me --acl public-read
- name: Create CloudFront invalidation
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/*"

0 comments on commit 8e666ec

Please sign in to comment.