Skip to content

Commit 0351441

Browse files
committed
Try to set package name
1 parent 5087624 commit 0351441

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ jobs:
1010
- run: bun install
1111
- run: bun run package
1212

13+
- name: Setup Environment
14+
run: node -e "console.log('PACKAGE_VERSION=' + require('./package.json').version + '\nPACKAGE_NAME=' + require('./package.json').name + '-' + require('./package.json').version)" >> $GITHUB_ENV
15+
1316
- uses: actions/upload-artifact@v4
1417
with:
15-
name: ".vsix"
16-
path: "*.vsix"
18+
name: ${{ env.PACKAGE_NAME }}.vsix
19+
path: ./${{ env.PACKAGE_NAME }}.vsix

0 commit comments

Comments
 (0)