Skip to content

download to dist

download to dist #10

Workflow file for this run

name: Build & Deploy
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build application
run: yarn build
- uses: actions/upload-artifact@v3
with:
name: build
path: dist
deploy:
name: Deploy
runs-on: ubuntu-latest
if: github.ref_name == 'main'
needs: build
steps:
- uses: actions/download-artifact@v3
with:
name: build
path: ./dist
- 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: us-east-1
- name: Deploy to S3
run: aws s3 sync --delete ./dist/ s3://${{ secrets.BUCKET_ID }}
- name: Create CloudFront invalidation
run: aws cloudfront create-invalidation --distribution-id ${{ secrets.DISTRIBUTION_ID }} --paths "/*"