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 d98769e commit 1ccfd79Copy full SHA for 1ccfd79
.github/workflows/publish-vscode.yml
@@ -31,4 +31,4 @@ jobs:
31
- name: Publish
32
if: github.event_name == 'release'
33
run: npm version ${{ github.ref_name }} &&
34
- npm run vsce publish -p ${{ secrets.VSCE_TOKEN }}
+ npm run vsce publish -p ${{ secrets.VSCE_TOKEN }} ${{ github.ref_name }}
server/setup.py
@@ -30,6 +30,9 @@
30
'tests',
],
),
+ setup_requires=[
+ 'setuptools_scm',
35
+ ],
36
use_scm_version={
37
'root': '..',
38
'relative_to': __file__,
0 commit comments