Skip to content

Commit

Permalink
fix(cd): install musl-tools for the musl target
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jul 27, 2021
1 parent aa007f9 commit 27f2621
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
uses: actions/checkout@master
- name: Set the release version
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
- name: Install musl-tools
if: matrix.TARGET == 'x86_64-unknown-linux-musl'
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
--allow-unauthenticated musl-tools
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit 27f2621

Please sign in to comment.