Skip to content

Commit 88bd33d

Browse files
committed
chore(release): bump version to 1.1.0
- explicitly name the vsix output file in the release workflow
1 parent 79006d0 commit 88bd33d

3 files changed

Lines changed: 5 additions & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,10 @@ jobs:
2727
run: npm run compile
2828

2929
- name: Package Extension
30-
run: npx vsce package --allow-missing-repository
31-
32-
- name: Find VSIX file
33-
id: get_vsix
34-
# Grabs the exact name of the generated vsix file to pass to the next step
35-
run: echo "VSIX_FILE=$(ls *.vsix | head -n 1)" >> $GITHUB_ENV
30+
run: npx vsce package --allow-missing-repository -o git-diff-viewer.vsix
3631

3732
- name: Create GitHub Release
3833
uses: softprops/action-gh-release@v2
3934
with:
40-
files: ${{ env.VSIX_FILE }}
35+
files: git-diff-viewer.vsix
4136
generate_release_notes: true # Auto-generates a changelog based on your commits

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
@@ -2,7 +2,7 @@
22
"name": "git-diff-viewer",
33
"displayName": "Git Diff Viewer",
44
"description": "Load and copy git diff output from the sidebar",
5-
"version": "1.0.2",
5+
"version": "1.1.0",
66
"publisher": "EithonX",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)