Skip to content

Update index.html

Update index.html #8

Workflow file for this run

name: Deploy to S3
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4 # Use the latest version compatible with Node.js 20
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3 # Compatible with Node.js 20
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Sync files to S3
run: |
aws s3 sync . s3://${{ secrets.S3_BUCKET_NAME }} --delete