Skip to content

feat(about): Implement About Page; Enhance About Visual Design and Readability #1

feat(about): Implement About Page; Enhance About Visual Design and Readability

feat(about): Implement About Page; Enhance About Visual Design and Readability #1

Workflow file for this run

name: Deploy Frontend
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- 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: Install Dependencies
run: |
yarn install
cd infrastructure && yarn install
- name: Build Next.js
run: yarn build
- name: Deploy to AWS
if: github.ref == 'refs/heads/main'
run: |
cd infrastructure
yarn deploy:prod