remove sudo from AWS CLI installation steps in CI workflow
This commit is contained in:
parent
ff809a0a16
commit
377f7b8819
1 changed files with 2 additions and 2 deletions
|
|
@ -42,8 +42,8 @@ jobs:
|
||||||
|
|
||||||
- name: Install AWS CLI
|
- name: Install AWS CLI
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update -y
|
apt-get update -y
|
||||||
sudo apt-get install -y awscli || (apt-get update -y && apt-get install -y awscli)
|
apt-get install -y awscli
|
||||||
|
|
||||||
- name: Deploy to S3
|
- name: Deploy to S3
|
||||||
run: aws s3 sync dist/ s3://${{ secrets.AWS_S3_BUCKET_BETA }} --delete
|
run: aws s3 sync dist/ s3://${{ secrets.AWS_S3_BUCKET_BETA }} --delete
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue