wip: vscode extension

This commit is contained in:
Frank
2025-07-20 11:33:41 -04:00
parent f9a47fe5a3
commit 0e1565449e
18 changed files with 1005 additions and 2 deletions

32
.github/workflows/publish-vscode.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: publish-vscode
on:
workflow_dispatch:
push:
tags:
- "vscode-v*.*.*"
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: write
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.2.17
- run: git fetch --force --tags
- run: bun install
- run: bun install -g @vscode/vsce
- name: Publish
run: ./script/publish
working-directory: ./packages/opencode

View File

@@ -6,7 +6,7 @@ on:
branches:
- dev
tags:
- "*"
- "v*.*.*"
concurrency: ${{ github.workflow }}-${{ github.ref }}