We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b024d4a + 82a2163 commit d3a1e0fCopy full SHA for d3a1e0f
.github/workflows/backend-ci-cd.yml
@@ -102,7 +102,9 @@ jobs:
102
- name: Get VSIX
103
run: |
104
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
+ 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
108
109
- name: Set up QEMU
110
uses: docker/setup-qemu-action@v3
0 commit comments