From ebfad1ce04d72d0ee67ccbfb5dfecb3416310298 Mon Sep 17 00:00:00 2001 From: Jamie Wilkinson Date: Mon, 22 Nov 2021 15:20:47 +1100 Subject: [PATCH] Fix the tag matcher. https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet explains that `*' does not match a `/'. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e82fbed..3d12d99 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,6 +6,7 @@ on: push: tags: - v* + - version/* permissions: # writes to the Releases API