From 95a6a5975973f87856cc04019b7541ddc9a45cc9 Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Fri, 20 Mar 2026 10:13:22 -0400 Subject: [PATCH] ci: auto-publish GitHub release on version tag push --- .github/workflows/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..52ea998 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: Release + +on: + push: + tags: + - "v*" + +permissions: + contents: write + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 + with: + persist-credentials: false + + - uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # master + with: + generate_release_notes: true