From 96e230c7f1c5d65e2fc07b83f049ddea4abf3a5f Mon Sep 17 00:00:00 2001 From: Daniel Podwysocki <183509486+danielpodwysocki-gini@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:23:58 +0200 Subject: [PATCH] also release on tags matching 0.0.0-rc.0, drop main branch filter I tried keeping the main branch filter without extra complexity/duplication, but that looks messier than its worth. Thought about yaml anchors, but those can't be shared across documents... (so the `---` separator wipes them) :( --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3c73112..8c5cd4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,8 +4,7 @@ on: push: tags: - '[0-9]+.[0-9]+.[0-9]+' - branches: - - master + - '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+' permissions: contents: write