Skip to content

window.history cannot be cleared, push "/" URL instead #121

window.history cannot be cleared, push "/" URL instead

window.history cannot be cleared, push "/" URL instead #121

Workflow file for this run

# https://github.com/jakejarvis/s3-sync-action/tree/v0.5.1
name: Deploy
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build:prod
- run: npm run test
- uses: jakejarvis/s3-sync-action@v0.5.1
with:
args: --acl public-read --follow-symlinks --delete
env:
SOURCE_DIR: build
AWS_S3_BUCKET: ${{secrets.AWS_S3_BUCKET}}
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}}
AWS_REGION: eu-west-3