Skip to content

Commit 3b82afe

Browse files
committed
fix(ci): correct build command of ovsx publish
1 parent 5d27313 commit 3b82afe

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/extension-release.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,14 @@ jobs:
1919
node-version: 20
2020
cache: pnpm
2121

22-
- run: pnpm install -g ovsx
23-
- run: pnpm install --frozen-lockfile
24-
- run: pnpm run build:prod && pnpm ovsx publish
22+
- name: Install dependencies
23+
run: pnpm install -g ovsx && pnpm install --frozen-lockfile
24+
25+
- name: Build
26+
run: pnpm run build && pnpm --filter volar run build:prod
27+
28+
- name: Publish
29+
run: pnpm ovsx publish
2530
working-directory: extensions/vscode
2631
env:
2732
OVSX_PAT: ${{ secrets.OVSX_PAT }}

0 commit comments

Comments
 (0)