From 57a47a5bf9eae4bc1c4b7676acfc713c1bd97f82 Mon Sep 17 00:00:00 2001 From: Hans Kokx Date: Sun, 21 Jun 2026 16:55:38 +0200 Subject: [PATCH] Add GitHub Actions workflow for releasing Zed Extension Signed-off-by: Hans Kokx --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..6dd483d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,18 @@ +on: + workflow_dispatch: + push: + tags: + - "v*" + +jobs: + homebrew: + name: Release Zed Extension + runs-on: ubuntu-latest + steps: + - uses: huacnlee/zed-extension-action@v2 + with: + extension-name: kabukicho-theme + push-to: hanskokx/extensions + env: + # the personal access token should have "repo" & "workflow" scopes + COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}