We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 860834f commit c6b51eaCopy full SHA for c6b51ea
.github/workflows/publish.yml
@@ -19,15 +19,7 @@ jobs:
19
- run: npm install -g gulp ovsx
20
- run: gulp 'vsix:release:package'
21
22
- - name: upload vsix artifact
23
- uses: actions/upload-artifact@v2
24
- with:
25
- name: extension
26
- path: ./*.vsix
27
-
28
- - name: download vsix artifact
29
- uses: actions/download-artifact@v2
30
31
- name: extension.vsix
+ - name: Get package version
+ run: node -e "console.log('VERSION=' + require('./package.json').version)" >> $GITHUB_ENV
32
33
- - run: ovsx publish ./extension.vsix -p ${{ secrets.OPEN_VSX_TOKEN }}
+ - run: ovsx publish ./csharp-${{ env.VERSION }}.vsix -p ${{ secrets.OPEN_VSX_TOKEN }}
0 commit comments