Skip to content

Commit

Permalink
[CI] Fix tag filters for non-rc suffixes in the release workflow (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb authored May 13, 2024
1 parent a219645 commit 04b26cc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ name: Release
on:
push:
branches:
- release/[0-9]+.[0-9]+.[0-9]+-?[a-z0-9]*
- release/[0-9]+.[0-9]+.[0-9]
# Matches branches containing an arbitrary suffix starting with '-'.
- release/[0-9]+.[0-9]+.[0-9]+-*
tags:
- v[0-9]+.[0-9]+.[0-9]+-?[a-z0-9]*
- v[0-9]+.[0-9]+.[0-9]
# Matches tags containing an arbitrary suffix starting with '-'.
- v[0-9]+.[0-9]+.[0-9]+-*

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit 04b26cc

Please sign in to comment.