From 95aa827d23d7e1439037482ac91d88b51ce05d9e Mon Sep 17 00:00:00 2001 From: Alex Rakowski <20504869+agrski@users.noreply.github.com> Date: Sun, 4 Jun 2023 20:40:26 +0100 Subject: [PATCH] ci: Fix tag pattern in release workflow (#40) Due to YAML parsing, the pattern requires surrounding quotes. See here for details: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#filter-pattern-cheat-sheet --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index baea1cd..ab49d9a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,7 +2,7 @@ name: create-release on: push: tags: - - v[0-9]+.[0-9]+.[0-9]+* + - 'v[0-9]+.[0-9]+.[0-9]+*' jobs: create-release: runs-on: ubuntu-latest