Skip to content

or this

or this #4

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 === 'main'

Check failure on line 24 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Build & Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 24, Col: 9): Unrecognized named-value: 'GITHUB_REF'. Located at position 1 within expression: GITHUB_REF === 'main'
needs: build
steps:
- uses: actions/download-artifact@v3
with:
name: build
- 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 "/*"