Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
RedCMD committed Aug 27, 2024
1 parent 4aa2137 commit 983573b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Publish Pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- name: Package Extension
run: | # `.vsix` file
npx vsce package patch --pre-release
git push
git push --tags
echo "VERSION=$(node -p "require('./package.json').version")" >> "$GITHUB_ENV"
Expand All @@ -40,4 +41,3 @@ jobs:
- name: Publish Pre-release
run: | # upload to Extension Marketplace
npx vsce publish --pre-release -p ${{ secrets.VSCE_PAT }} --packagePath json-embedded-languages-$VERSION.vsix
git push
2 changes: 1 addition & 1 deletion .github/workflows/Publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
- name: Package Extension
run: | # `.vsix` file
npx vsce package ${{ github.event.inputs.version }}
git push
git push --tags
echo "VERSION=$(node -p "require('./package.json').version")" >> "$GITHUB_ENV"
Expand All @@ -45,4 +46,3 @@ jobs:
- name: Publish Release
run: | # upload to Extension Marketplace
npx vsce publish -p ${{ secrets.VSCE_PAT }} --packagePath json-embedded-languages-$VERSION.vsix
git push
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## 0.0.2
## 0.0.3

- Initial release

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "JSON Embedded Languages",
"description": "Embed Languages into JSON",
"publisher": "RedCMD",
"version": "0.0.1",
"version": "0.0.2",
"engines": {
"vscode": "^1.92.0"
},
Expand Down

0 comments on commit 983573b

Please sign in to comment.