From 1bde263145de2a7f69b9bdd5f840122c06127147 Mon Sep 17 00:00:00 2001 From: Oliver Mannion <125105+tekumara@users.noreply.github.com> Date: Thu, 3 Oct 2024 22:17:19 +1000 Subject: [PATCH] feat(vscode): publish the x86_64 musl target resolves #112 --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e279f0b..dc98e1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: |