Skip to content

Commit

Permalink
ci: Fix release tag regex (#2264)
Browse files Browse the repository at this point in the history
Not also matches tags including `beta` or `rc` modifiers.
  • Loading branch information
palango committed Feb 21, 2024
1 parent c715f46 commit 8175f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-sign-release-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
# Matches i.e: release/1.9.x
- 'release/[0-9]+.[0-9]+.x'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+(?:-\S+(?:\.\d+)*)*'
workflow_dispatch:

jobs:
Expand Down

0 comments on commit 8175f3a

Please sign in to comment.