fix(deps): update dependency @types/node to v20.17.5 #391
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload to S3 | |
on: | |
push: | |
branches: | |
- main | |
env: | |
NEXT_TELEMETRY_DISABLED: 1 | |
jobs: | |
upload: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run build | |
- name: AWS CLI v2 | |
uses: imehedi/actions-awscli-v2@latest | |
with: | |
args: s3 sync out s3://${{ secrets.AWS_BUCKET }} --delete --endpoint-url ${{ vars.SC_AMS_AWS_ENDPOINT }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.SC_AWS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.SC_AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: "nl-ams" |