fix(cd): install musl-tools for the musl target

This commit is contained in:
orhun 2021-07-27 16:57:56 +03:00
parent aa007f9b14
commit 27f2621cd2
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
1 changed files with 6 additions and 0 deletions

View File

@ -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: