From 19e6800fe8061e401ee79c19cc90cc602f52d555 Mon Sep 17 00:00:00 2001 From: Nick McCready Date: Sat, 4 Apr 2026 11:27:41 -0400 Subject: [PATCH] ci: add auto-release workflow on tag push --- .github/workflows/auto-release.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/auto-release.yml diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml new file mode 100644 index 0000000..2c432f2 --- /dev/null +++ b/.github/workflows/auto-release.yml @@ -0,0 +1,14 @@ +name: auto-release + +on: + push: + tags: + - 'v*' + +jobs: + tests: + uses: ./.github/workflows/tests.yml + + release: + needs: [tests] + uses: brickhouse-tech/.github/.github/workflows/auto-release.yml@main