Skip to content

Commit f0c8423

Browse files
fix: add vscode build step to produce lib/vscode-reh-web-*
The npm run release command requires the vscode remote extension host to be built first. This was missing from the workflow, causing rsync to fail with 'No such file or directory'.
1 parent 5395539 commit f0c8423

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/deploy-v2-prod.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,15 @@ jobs:
7474
env:
7575
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7676

77+
- name: Build vscode
78+
run: |
79+
pushd lib/vscode
80+
npm ci
81+
popd
82+
npm run build:vscode
83+
env:
84+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85+
7786
- name: Set version
7887
id: version
7988
run: |

0 commit comments

Comments
 (0)