Skip to content

Commit

Permalink
ci: apt-get requires sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Oct 22, 2022
1 parent a1f2547 commit cd89a68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v3
- name: Deps
run: |
apt-get install -y musl-tools
sudo apt-get install -y musl-tools
rustup target add x86_64-unknown-linux-musl
- run: make static

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Deps
run: |
apt-get install -y musl-tools
sudo apt-get install -y musl-tools
rustup target add x86_64-unknown-linux-musl
- name: Build static
Expand Down

0 comments on commit cd89a68

Please sign in to comment.