Skip to content

Commit

Permalink
ci(release): use musl binary in linux-arm64 vsix
Browse files Browse the repository at this point in the history
  • Loading branch information
tekumara committed Dec 20, 2024
1 parent 7bf3266 commit 5ccec8f
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 @@ -71,9 +71,9 @@ jobs:
- run: cargo build --target ${{ matrix.target }} --release
- run: npm ci
- name: vsce package
# we can only publish a single linux-x64 package - so we skip the
# gnu target and package the musl target
if: matrix.target != 'x86_64-unknown-linux-gnu'
# we can only publish a single linux-x64 and linux-arm64 package
# so we skip the gnu target and package the musl target
if: matrix.target != 'x86_64-unknown-linux-gnu' && matrix.target != 'aarch64-unknown-linux-gnu'
# use bash on windows
shell: bash
run: |
Expand Down

0 comments on commit 5ccec8f

Please sign in to comment.