Skip to content

Commit

Permalink
fixup! Add publishing CI
Browse files Browse the repository at this point in the history
Fix tag patterns
  • Loading branch information
MattSturgeon committed Apr 4, 2024
1 parent d4bbd65 commit b43578b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
push:
# tags should be in a release branch
branches:
- main
- ?.* # e.g. 1.20
- 'main'
- '1.[0-9]+' # e.g. 1.20
tags:
- v*+mc* # e.g. v1.2.3+mc1.20.4
- 'v*[+]mc*' # e.g. v1.2.3+mc1.20.4

# Only allow running one build job at a time to optimise cache hits
concurrency:
Expand Down

0 comments on commit b43578b

Please sign in to comment.