Skip to content

Commit 1ccfd79

Browse files
authored
Fix vscode/pypi plugin versions (#40)
1 parent d98769e commit 1ccfd79

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/publish-vscode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
- name: Publish
3232
if: github.event_name == 'release'
3333
run: npm version ${{ github.ref_name }} &&
34-
npm run vsce publish -p ${{ secrets.VSCE_TOKEN }}
34+
npm run vsce publish -p ${{ secrets.VSCE_TOKEN }} ${{ github.ref_name }}

server/setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030
'tests',
3131
],
3232
),
33+
setup_requires=[
34+
'setuptools_scm',
35+
],
3336
use_scm_version={
3437
'root': '..',
3538
'relative_to': __file__,

0 commit comments

Comments
 (0)