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 8adc0d8 commit eb09e2dCopy full SHA for eb09e2d
.github/workflows/deploy.yaml
@@ -24,6 +24,16 @@ jobs:
24
- name: Install dependencies
25
run: npm --color ci
26
27
+ - name: Read version from package.json
28
+ run: |
29
+ VERSION=$(node -p "require('./package.json').version")
30
+ echo "version=$VERSION" >> $GITHUB_ENV
31
+
32
+ - name: Create Git tag
33
34
+ git tag ${{ env.version }}
35
+ git push origin ${{ env.version }}
36
37
- name: Publish to Open VSX Registry
38
id: publishToOpenVSX
39
uses: HaaLeo/publish-vscode-extension@v1
0 commit comments