From 767ef12e39636f35a556841f41dcdf3f7103b24a Mon Sep 17 00:00:00 2001 From: Tom Zaspel Date: Sun, 26 Apr 2026 10:19:19 +0200 Subject: [PATCH] feat: add automatic extension update --- .github/workflows/release.yml | 17 +++++++++++++++++ 1 file changed, 17 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..44a3390 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,17 @@ +on: + push: + tags: + - "v*" + +jobs: + homebrew: + name: Release Zed Extension + runs-on: ubuntu-latest + steps: + - uses: huacnlee/zed-extension-action@v2 + with: + extension-name: helm + push-to: cabrinha/zed-extensions + env: + # the personal access token should have "repo" & "workflow" scopes + COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}