We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 681afcd commit da40e34Copy full SHA for da40e34
1 file changed
.github/workflows/release.yml
@@ -48,13 +48,9 @@ jobs:
48
)
49
& az login @azLoginParams
50
- name: 📥 Get VSIX Release Asset
51
- uses: dsaltares/[email protected]
52
- with:
53
- version: tags/${{ github.event.inputs.version || github.event.release.tag_name }}
54
- file: .+
55
- regex: true
56
- - name: Setup upterm session
57
- uses: owenthereal/action-upterm@v1
+ run: |
+ VERSION_TAG="${{ inputs.version || github.ref_name }}"
+ gh release download "$VERSION_TAG" --pattern "*.vsix" --repo "${{ github.repository }}"
58
- name: 🚀 Publish to VS Code Marketplace
59
run: |
60
ls
0 commit comments