From 4fe72b7463ab1e59f2de7861d0583fb66c9fd659 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Breu=C3=9F?= Date: Thu, 30 Jan 2025 18:45:52 +0100 Subject: [PATCH] fix: trigger build on tags with pre-release information (#738) Allow creating pre-release nuget packages by appending e.g. "-pre.1" to the tag --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2c6565ae..685c6fe8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: branches: [ main ] - tags: [ 'v[0-9]+.[0-9]+.[0-9]+', 'core/v[0-9]+.[0-9]+.[0-9]+' ] + tags: [ 'v[0-9]+.[0-9]+.[0-9]+*', 'core/v[0-9]+.[0-9]+.[0-9]+*' ] jobs: unit-tests: