summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-11-08 23:23:43 -0600
committerAiden Cline <[email protected]>2025-11-08 23:23:43 -0600
commitcfbbdc2e14099de6994a07514cca94d97a51662d (patch)
tree47b736f5463fab0f6df7fedde71209e6c4d67853 /.github/workflows
parentfeb65201f6d8413d6d3ae92a9f0e696496dc3fd9 (diff)
downloadopencode-cfbbdc2e14099de6994a07514cca94d97a51662d.tar.gz
opencode-cfbbdc2e14099de6994a07514cca94d97a51662d.zip
ci: add job to sync zed extension
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/sync-zed-extension.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/sync-zed-extension.yml b/.github/workflows/sync-zed-extension.yml
new file mode 100644
index 000000000..d0856cd3b
--- /dev/null
+++ b/.github/workflows/sync-zed-extension.yml
@@ -0,0 +1,16 @@
+on:
+ push:
+ tags:
+ - "v*"
+
+jobs:
+ zed:
+ name: Release Zed Extension
+ runs-on: ubuntu-latest
+ steps:
+ - uses: huacnlee/zed-extension-action@6a168731f1d994905eeb552b3b42b0cb6c4d12e6
+ with:
+ extension-name: opencode
+ push-to: sst/zed-extensions
+ env:
+ COMMITTER_TOKEN: ${{ secrets.SST_GITHUB_TOKEN }}