remove sudo from AWS CLI installation steps in CI workflow
Some checks failed
Beta CI/CD Pipeline / build-and-test (push) Successful in 1m1s
Beta CI/CD Pipeline / deploy-beta (push) Failing after 5s

This commit is contained in:
vickytechkey 2026-09-05 15:16:57 +05:30
parent ff809a0a16
commit 377f7b8819

View file

@ -42,8 +42,8 @@ jobs:
- name: Install AWS CLI
run: |
sudo apt-get update -y
sudo apt-get install -y awscli || (apt-get update -y && apt-get install -y awscli)
apt-get update -y
apt-get install -y awscli
- name: Deploy to S3
run: aws s3 sync dist/ s3://${{ secrets.AWS_S3_BUCKET_BETA }} --delete