Skip to content

Commit

Permalink
Limit release trigger to 0.* tags (#14940)
Browse files Browse the repository at this point in the history
This changes the release trigger to only run when a tag matching the
pattern `0.*` is created. The intent is to allow us to create tags for
other crates that we may release out-of-band of the normal releases (and
maybe consider creating tags for all crates to make them easier to
find). For example, I would like to create `home-0.5.11` tags (and
earlier versions that were missed due to this trigger).

cc #14538
  • Loading branch information
weihanglo authored Dec 15, 2024
2 parents 769f622 + f18cbda commit e5c4dc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Release
on:
push:
tags:
- "**"
- "0.*"

# Prevent multiple releases from starting at the same time.
concurrency:
Expand Down

0 comments on commit e5c4dc6

Please sign in to comment.