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 9c84e0a commit 1b306c5Copy full SHA for 1b306c5
1 file changed
.github/workflows/release.yml
@@ -73,16 +73,12 @@ jobs:
73
- name: Install vsce
74
run: npm install -g @vscode/vsce
75
76
- - name: Commit Changes
+ - name: Set the version
77
run: |
78
- git config --global user.email "hello@processing.org"
79
- git config --global user.name "Processing Bot"
80
-
81
- git add .
82
- git commit -m "Prepare release ${{ github.event.release.tag_name }}"
+ npm version ${{ github.event.release.tag_name }} --no-git-tag-version
83
84
- name: Package extension
85
- run: vsce package ${{ github.event.release.tag_name }}
+ run: vsce package
86
87
- name: Upload VSIX to GitHub Release
88
uses: svenstaro/upload-release-action@v2
@@ -97,4 +93,4 @@ jobs:
97
93
env:
98
94
VSCE_PAT: ${{ secrets.VSCE_PAT }}
99
95
100
- vsce publish ${{ github.event.release.tag_name }}
96
+ vsce publish
0 commit comments