From 71681a97c6d92252a5424e2b7660cbfccfbea859 Mon Sep 17 00:00:00 2001 From: Valentine Briese Date: Mon, 6 May 2024 15:23:18 -0700 Subject: [PATCH] Add `release.yml` workflow --- .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..3c89723 --- /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@v1 + with: + extension-name: wit + push-to: valentinegb/extensions + env: + # the personal access token should have "repo" & "workflow" scopes + COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}