Skip to content

Commit 8f65c1c

Browse files
committed
fix: use correct version of vsce, not outdated one
1 parent bdbb222 commit 8f65c1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/on-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
if: ${{ startsWith(github.ref, 'refs/tags/v') && !endsWith(github.ref, '-pre') && matrix.os == 'ubuntu-latest' }}
6464
run: |
6565
cd vscode-lean4
66-
npx vsce publish -i lean4-*.vsix
66+
npx @vscode/vsce publish -i lean4-*.vsix
6767
npx ovsx publish lean4-*.vsix
6868
env:
6969
OVSX_PAT: ${{ secrets.OVSX_PAT }}
@@ -73,7 +73,7 @@ jobs:
7373
if: ${{ startsWith(github.ref, 'refs/tags/v') && endsWith(github.ref, '-pre') && matrix.os == 'ubuntu-latest' }}
7474
run: |
7575
cd vscode-lean4
76-
npx vsce publish --pre-release -i lean4-*.vsix
76+
npx @vscode/vsce publish --pre-release -i lean4-*.vsix
7777
npx ovsx publish --pre-release lean4-*.vsix
7878
env:
7979
OVSX_PAT: ${{ secrets.OVSX_PAT }}

0 commit comments

Comments
 (0)