Skip to content

Commit

Permalink
feat(vscode): publish the x86_64 musl target
Browse files Browse the repository at this point in the history
resolves #112
  • Loading branch information
tekumara committed Oct 3, 2024
1 parent 3b09555 commit 1bde263
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 @@ -68,9 +68,9 @@ jobs:
- run: cargo build --target ${{ matrix.target }} --release
- run: npm ci
- name: vsce package
# don't make a musl vsix package, because we can only publish a single
# linux-x64 package
if: matrix.target != 'x86_64-unknown-linux-musl'
# 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'
# use bash on windows
shell: bash
run: |
Expand Down

0 comments on commit 1bde263

Please sign in to comment.