Skip to content

Commit d3a1e0f

Browse files
authored
Merge pull request chaitin#218 from yokowu/fix-ci-get-vsix
fix: 修复ci下载VSIX
2 parents b024d4a + 82a2163 commit d3a1e0f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.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)