Skip to content

Commit

Permalink
fix vsce
Browse files Browse the repository at this point in the history
  • Loading branch information
pedro terzero committed Mar 23, 2023
1 parent edf5ad6 commit b241c91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
id: package
# run: npx vsce package
run: |
npx vsce package --pre-release
npx @vscode/vsce package --pre-release
VSIX=$(echo *.vsix)
echo "PACKAGE_FILENAME=$VSIX" >> $GITHUB_OUTPUT
# run: npx vsce package -o openxcom-ruleset-linker.vsix
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build & package project
id: create_package
run: |
npx vsce package --pre-release
npx @vscode/vsce package --pre-release
VSIX=$(echo *.vsix)
echo "::set-output name=package_filename::$VSIX"
- name: Create Prerelease
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build & package project
id: create_package
run: |
npx vsce package
npx @vscode/vsce package
VSIX=$(echo *.vsix)
echo "::set-output name=package_filename::$VSIX"
- name: Create Release
Expand Down

0 comments on commit b241c91

Please sign in to comment.