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 5087624 commit 0351441Copy full SHA for 0351441
.github/workflows/build.yaml
@@ -10,7 +10,10 @@ jobs:
10
- run: bun install
11
- run: bun run package
12
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
+
16
- uses: actions/upload-artifact@v4
17
with:
- name: ".vsix"
- path: "*.vsix"
18
+ name: ${{ env.PACKAGE_NAME }}.vsix
19
+ path: ./${{ env.PACKAGE_NAME }}.vsix
0 commit comments