ci: fix aws s3 cmd on ubuntu 20.04

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-05-18 16:20:12 +02:00
parent a717202964
commit 291d632447
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ jobs:
name: Upload files to S3 bucket
if: github.event_name != 'pull_request'
run: |
aws s3 sync --acl public-read _site s3://${{ env.DOCS_S3_HOST }}/ --delete
aws --region us-east-1 s3 sync --acl public-read _site s3://${{ env.DOCS_S3_HOST }}/ --delete
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}