Skip to content

Commit

Permalink
ci: remove sudo from apt-get install command
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Feb 5, 2024
1 parent 73a8058 commit 3c9aa71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cdn_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ jobs:
PATH: ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
run: |
# Install AWS CLI
sudo apt-get update
sudo apt-get install -y awscli --no-install-recommends
apt-get update
apt-get install -y awscli --no-install-recommends
# Push to S3
aws s3 sync ${{ github.workspace }}/dist/index.js \
Expand Down

0 comments on commit 3c9aa71

Please sign in to comment.