Skip to content

Bump actions/checkout from 1 to 4 #40

Bump actions/checkout from 1 to 4

Bump actions/checkout from 1 to 4 #40

Workflow file for this run

name: Deploy Website
on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: npm install
- run: npm run build
- uses: jakejarvis/s3-sync-action@master
if: github.ref == 'refs/heads/main'
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: 'jamesebentier.com'
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'us-west-2'
SOURCE_DIR: 'dist'