-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(workflows): Autotag to upload rpms
Auto tag workflow didn't trigger a follow-up RPM build and attach to the tag which means no tags get the rpms attached. This defeats the point of our autotagging as we want to have RPMs to test against.
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
name: Build release RPMs | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Auto Tag] | ||
types: | ||
- completed | ||
push: | ||
tags: | ||
- v* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
name: Build release RPMs & Handle release | ||
name: Handle release | ||
|
||
on: | ||
release: | ||
|