Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Build and Deploy to AWS S3
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '21'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Deploy to S3
uses: jakejarvis/[email protected]
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: chrisalvis.dev # Replace with your S3 bucket name
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'us-east-2' # Replace with your AWS region
SOURCE_DIR: 'dist' # Replace with the directory of your build artifacts