Skip to content

Commit

Permalink
chore(workflows): Autotag to upload rpms
Browse files Browse the repository at this point in the history
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
Venefilyn committed Oct 30, 2024
1 parent 9c3fabf commit 98ab009
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
"**/*centos7*Containerfile",
".devcontainer/centos7/**"
],
"labels": ["skip/changelog", "tests/skip"],
"labels": [
"kind/dependencies",
"skip/changelog",
"tests/skip"
],
"packageRules": [
{
"matchPackageNames": [
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
name: Build release RPMs

on:
workflow_run:
workflows: [Auto Tag]
types:
- completed
push:
tags:
- v*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jira-links.yml
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:
Expand Down

0 comments on commit 98ab009

Please sign in to comment.