mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
Limit release trigger to 0.* tags (#14940)
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
This commit is contained in:
commit
e5c4dc65c9
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -6,7 +6,7 @@ name: Release
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "**"
|
||||
- "0.*"
|
||||
|
||||
# Prevent multiple releases from starting at the same time.
|
||||
concurrency:
|
||||
|
Loading…
x
Reference in New Issue
Block a user