Skip to content

Commit 6554322

Browse files
committed
Fix: path.
1 parent 6e4f0a9 commit 6554322

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,10 @@ jobs:
203203
- id: cargo-dist
204204
shell: bash
205205
run: |
206-
npx vsce publish --packagePath server/target/distrib/extensions/VSCode/codechat-editor-client-win32-x64-${APP_VERSION}.vsix
207-
npx vsce publish --packagePath server/target/distrib/extensions/VSCode/codechat-editor-client-linux-x64-${APP_VERSION}.vsix
208-
npx vsce publish --packagePath server/target/distrib/extensions/VSCode/codechat-editor-client-darwin-x64-${APP_VERSION}.vsix
209-
npx vsce publish --packagePath server/target/distrib/extensions/VSCode/codechat-editor-client-darwin-arm64-${APP_VERSION}.vsix
210-
cd server
206+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-win32-x64-${APP_VERSION}.vsix
207+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-linux-x64-${APP_VERSION}.vsix
208+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-darwin-x64-${APP_VERSION}.vsix
209+
npx vsce publish --packagePath target/distrib/extensions/VSCode/codechat-editor-client-darwin-arm64-${APP_VERSION}.vsix
211210
dist build ${{ needs.plan.outputs.tag-flag }} --output-format=json "--artifacts=global" > dist-manifest.json
212211
echo "dist ran successfully"
213212
@@ -289,7 +288,7 @@ jobs:
289288
# Write and read notes from a file to avoid quoting breaking things
290289
echo "$ANNOUNCEMENT_BODY" > $RUNNER_TEMP/notes.txt
291290
292-
gh release create "${{ needs.plan.outputs.tag }}" --target "$RELEASE_COMMIT" $PRERELEASE_FLAG --title "$ANNOUNCEMENT_TITLE" --notes-file "$RUNNER_TEMP/notes.txt" artifacts/server/target/distrib/*
291+
gh release create "${{ needs.plan.outputs.tag }}" --target "$RELEASE_COMMIT" $PRERELEASE_FLAG --title "$ANNOUNCEMENT_TITLE" --notes-file "$RUNNER_TEMP/notes.txt" artifacts/target/distrib/*
293292
294293
announce:
295294
needs:

0 commit comments

Comments
 (0)