mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2025-01-31 13:02:43 -05:00
fix(cd): install musl-tools for the musl target
This commit is contained in:
parent
aa007f9b14
commit
27f2621cd2
1 changed files with 6 additions and 0 deletions
6
.github/workflows/cd.yml
vendored
6
.github/workflows/cd.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue