diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0d76f46..c7f8bf1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: '17.x' - - name: Install dependencies + - name: Install Dependencies run: npm install --legacy-peer-deps - name: Lint Site Code run: npm run test @@ -27,6 +27,9 @@ jobs: role-to-assume: ${{ secrets.AWS_OIDC_ROLE }} role-session-name: GitHub-Action-Role aws-region: ${{ vars.AWS_REGION }} + - name: Upload to S3 + run: | + aws s3 cp ./build/* s3://${{ vars.AWS_S3_BUCKET }}/ # # - name: Send Notification # # uses: voxmedia/github-action-slack-notify-build@v1 # # with: