Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tcklpl committed Jul 30, 2024
2 parents b5eca15 + 3dfff29 commit b426dcf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/trigger-dev-closed-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: Dev Build for Closed Versions
on:
push:
tags:
- v0.[0-9]+.[0-9]+ # Will trigger on all zero-leading closed tags, eg. v0.9.0 or v0.87.12, not triggering on open tags like v1.0.0 or v1.0.0-rc1
tags-ignore:
- v0.[0-9]+.[0-9]+-*
- "v0.[0-9]+.[0-9]+" # Will trigger on all zero-leading closed tags, eg. v0.9.0 or v0.87.12, not triggering on open tags like v1.0.0 or v1.0.0-rc1
- "!v0.[0-9]+.[0-9]+-*"

jobs:
build-project:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-dev-open-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Dev Build for Open Versions
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+-* # Will trigger on all open tags, eg. v0.9.0-rc1 or v1.0.0-alpha, not triggering on closed tags like v1.0.0
- "v[0-9]+.[0-9]+.[0-9]+-*" # Will trigger on all open tags, eg. v0.9.0-rc1 or v1.0.0-alpha, not triggering on closed tags like v1.0.0

jobs:
build-project:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/trigger-stable-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: Build for Stable Versions
on:
push:
tags:
- v[1-9][0-9]*.[0-9]+.[0-9]+ # Will trigger on all closed tags starting with a non-zero number, eg. v1.0.0 or v54.6.135, not triggering on tags like v0.97.1
tags-ignore:
- v[1-9][0-9]*.[0-9]+.[0-9]+-*
- "v[1-9][0-9]*.[0-9]+.[0-9]+" # Will trigger on all closed tags starting with a non-zero number, eg. v1.0.0 or v54.6.135, not triggering on tags like v0.97.1
- "!v[1-9][0-9]*.[0-9]+.[0-9]+-*"

jobs:
build-project:
Expand Down

0 comments on commit b426dcf

Please sign in to comment.