Skip to content

Commit

Permalink
Don't use sudo on debian
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadapc committed Apr 23, 2024
1 parent cc006c4 commit 87db45c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ jobs:
- uses: actions/checkout@v4
- name: Install cross compile toolchains and curl
run: |
sudo dpkg --add-architecture ${{ matrix.openssl_arch }}
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libssl-dev:${{ matrix.openssl_arch }} curl -y
dpkg --add-architecture ${{ matrix.openssl_arch }}
apt-get update
apt-get install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libssl-dev:${{ matrix.openssl_arch }} curl -y
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
Expand Down

0 comments on commit 87db45c

Please sign in to comment.