mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-21 18:55:16 +00:00
allow build or pre-release details in release tags
Examples: - v1.2.3-rc.1 (release candidate 1) - v1.2.3-dev+2 (dev pre-release, build 2)
This commit is contained in:
parent
89a76aedab
commit
aff422a6e0
2 changed files with 4 additions and 0 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -8,6 +8,8 @@ on:
|
|||
tags:
|
||||
- '**'
|
||||
- '!v[0-9]+.[0-9]+.[0-9]+'
|
||||
- '!v[0-9]+.[0-9]+.[0-9]+\+*'
|
||||
- '!v[0-9]+.[0-9]+.[0-9]+-*'
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -5,6 +5,8 @@ on:
|
|||
push:
|
||||
tags:
|
||||
- 'v[0-9]+.[0-9]+.[0-9]+'
|
||||
- 'v[0-9]+.[0-9]+.[0-9]+\+*'
|
||||
- 'v[0-9]+.[0-9]+.[0-9]+-*'
|
||||
|
||||
|
||||
jobs:
|
||||
|
|
Loading…
Reference in a new issue