From 784ebc4dafe2749dfc4e81b795943bea5245c79b Mon Sep 17 00:00:00 2001 From: Dylan Ireland Date: Wed, 1 May 2024 19:17:46 -0400 Subject: [PATCH] Create action.yml --- .github/workflows/action.yml | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..3c2bc01 --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,39 @@ +name: Deploy to AWS S3 + +on: + push: + branches: + - main + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: '20' + + - name: Install dependencies + run: npm install + + - name: Build + run: npm run 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-2' + + - name: Sync directory to S3 + uses: aws-actions/amazon-s3-sync@v1 + with: + args: --acl public-read --delete + source-dir: build + destination: ${{ secrets.AWS_S3_BUCKET }}