From 82a2163d7c6135ac3a6b30e1626f285ec5511b6c Mon Sep 17 00:00:00 2001 From: yokowu <18836617@qq.com> Date: Wed, 6 Aug 2025 19:32:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dci=E4=B8=8B=E8=BD=BDVS?= =?UTF-8?q?IX?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/backend-ci-cd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/backend-ci-cd.yml b/.github/workflows/backend-ci-cd.yml index 9cf4315..0f59278 100644 --- a/.github/workflows/backend-ci-cd.yml +++ b/.github/workflows/backend-ci-cd.yml @@ -102,7 +102,9 @@ jobs: - name: Get VSIX run: | mkdir -p assets/vsix - wget -O assets/vsix/monkeycode-${{ steps.get_version.outputs.VERSION#v }}.vsix https://release.baizhi.cloud/monkeycode/vsixs/monkeycode-${{ steps.get_version.outputs.VERSION#v }}.vsix + VERSION_NO_V=${{ steps.get_version.outputs.VERSION }} + VERSION_NO_V=${VERSION_NO_V#v} + wget -O assets/vsix/monkeycode-${VERSION_NO_V}.vsix https://release.baizhi.cloud/monkeycode/vsixs/monkeycode-${VERSION_NO_V}.vsix - name: Set up QEMU uses: docker/setup-qemu-action@v3