Skip to content

Commit 4fe72b7

Browse files
authored
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
1 parent 1aef964 commit 4fe72b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches: [ main ]
7-
tags: [ 'v[0-9]+.[0-9]+.[0-9]+', 'core/v[0-9]+.[0-9]+.[0-9]+' ]
7+
tags: [ 'v[0-9]+.[0-9]+.[0-9]+*', 'core/v[0-9]+.[0-9]+.[0-9]+*' ]
88

99
jobs:
1010
unit-tests:

0 commit comments

Comments
 (0)