Skip to content

Commit

Permalink
fix: trigger build on tags with pre-release information (#738)
Browse files Browse the repository at this point in the history
Allow creating pre-release nuget packages by appending e.g. "-pre.1" to the tag
  • Loading branch information
vbreuss authored Jan 30, 2025
1 parent 1aef964 commit 4fe72b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4fe72b7

Please sign in to comment.