Skip to content

Commit

Permalink
🚑 (CD) fix regex to accept -beta.1 format
Browse files Browse the repository at this point in the history
  • Loading branch information
MorganKryze committed Mar 28, 2024
1 parent 0f0247b commit c0f4c10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ on:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+' # match for vx.x.x tags
- 'v[0-9]+.[0-9]+.[0-9]+-alpha+' # match for vx.x.x-alpha tags
- 'v[0-9]+.[0-9]+.[0-9]+-alpha.+' # match for vx.x.x-alpha.x tags
- 'v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+' # match for vx.x.x-alpha.x tags
- 'v[0-9]+.[0-9]+.[0-9]+-beta+' # match for vx.x.x-beta tags
- 'v[0-9]+.[0-9]+.[0-9]+-beta.+' # match for vx.x.x-beta.x tags
- 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+' # match for vx.x.x-beta.x tags
- 'v[0-9]+.[0-9]+.[0-9]+-rc+' # match for vx.x.x-rc tags
- 'v[0-9]+.[0-9]+.[0-9]+-rc.+' # match for vx.x.x-rc.x tags
- 'v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+' # match for vx.x.x-rc.x tags

jobs:
build:
Expand Down

0 comments on commit c0f4c10

Please sign in to comment.