Skip to content

Commit 82a2163

Browse files
committed
fix: 修复ci下载VSIX
1 parent b024d4a commit 82a2163

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/backend-ci-cd.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ jobs:
102102
- name: Get VSIX
103103
run: |
104104
mkdir -p assets/vsix
105-
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
105+
VERSION_NO_V=${{ steps.get_version.outputs.VERSION }}
106+
VERSION_NO_V=${VERSION_NO_V#v}
107+
wget -O assets/vsix/monkeycode-${VERSION_NO_V}.vsix https://release.baizhi.cloud/monkeycode/vsixs/monkeycode-${VERSION_NO_V}.vsix
106108
107109
- name: Set up QEMU
108110
uses: docker/setup-qemu-action@v3

0 commit comments

Comments
 (0)