Skip to content

Commit 1a0df5a

Browse files
Skip Turbo Cache on VSIX Publish Workflow (#2011)
* fix: skip turbo cache on vsix publish ci workflow * refactor: remove changeset * refactor: remove mcp config
1 parent 58243d2 commit 1a0df5a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/marketplace-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Package Extension
4747
run: |
4848
current_package_version=$(node -p "require('./src/package.json').version")
49-
pnpm build
49+
pnpm vsix:production
5050
5151
# Save VSIX contents to a temporary file to avoid broken pipe issues.
5252
unzip -l bin/kilo-code-${current_package_version}.vsix > /tmp/kilo-code-vsix-contents.txt

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"build": "pnpm vsix",
1717
"bundle": "turbo bundle --log-order grouped --output-logs new-only",
1818
"bundle:nightly": "turbo bundle:nightly --log-order grouped --output-logs new-only",
19+
"vsix:production": "turbo vsix --log-order grouped --output-logs new-only --force",
1920
"vsix": "turbo vsix --log-order grouped --output-logs new-only",
2021
"vsix:nightly": "turbo vsix:nightly --log-order grouped --output-logs new-only",
2122
"clean": "turbo clean --log-order grouped --output-logs new-only && rimraf dist out bin .vite-port .turbo",

0 commit comments

Comments
 (0)