Skip to content

Commit

Permalink
chore: Fix regex for release candidate pipeline (#183)
Browse files Browse the repository at this point in the history
## Motivation

Wildcard was missing at the end of tags matching regex.
  • Loading branch information
nieomylnieja authored Mar 1, 2024
1 parent e1cee24 commit a561e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release candidate
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+-"
- "v[0-9]+.[0-9]+.[0-9]+-*"
jobs:
test:
uses: ./.github/workflows/acc-tests.yml
Expand Down

0 comments on commit a561e2a

Please sign in to comment.