Skip to content

Commit 983573b

Browse files
committed
Fix workflows
1 parent 4aa2137 commit 983573b

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/Publish Pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- name: Package Extension
2929
run: | # `.vsix` file
3030
npx vsce package patch --pre-release
31+
git push
3132
git push --tags
3233
echo "VERSION=$(node -p "require('./package.json').version")" >> "$GITHUB_ENV"
3334
@@ -40,4 +41,3 @@ jobs:
4041
- name: Publish Pre-release
4142
run: | # upload to Extension Marketplace
4243
npx vsce publish --pre-release -p ${{ secrets.VSCE_PAT }} --packagePath json-embedded-languages-$VERSION.vsix
43-
git push

.github/workflows/Publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- name: Package Extension
3434
run: | # `.vsix` file
3535
npx vsce package ${{ github.event.inputs.version }}
36+
git push
3637
git push --tags
3738
echo "VERSION=$(node -p "require('./package.json').version")" >> "$GITHUB_ENV"
3839
@@ -45,4 +46,3 @@ jobs:
4546
- name: Publish Release
4647
run: | # upload to Extension Marketplace
4748
npx vsce publish -p ${{ secrets.VSCE_PAT }} --packagePath json-embedded-languages-$VERSION.vsix
48-
git push

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## 0.0.2
3+
## 0.0.3
44

55
- Initial release
66

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "JSON Embedded Languages",
44
"description": "Embed Languages into JSON",
55
"publisher": "RedCMD",
6-
"version": "0.0.1",
6+
"version": "0.0.2",
77
"engines": {
88
"vscode": "^1.92.0"
99
},

0 commit comments

Comments
 (0)