Skip to content

Commit 56efabf

Browse files
Joeavaikathclaude
andcommitted
Trigger Quay push on oadp-* branch pushes instead of tag pushes
Changes the workflow trigger from version tags (v*) to oadp-* branches so that images are pushed when PRs merge into oadp-dev or release branches like oadp-1.6. Uses the branch name as the image version tag. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Joseph <jvaikath@redhat.com>
1 parent 111acba commit 56efabf

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/quay_binaries_push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Push binaries to Quay.io, when a new release is created
1+
# Push binaries to Quay.io on pushes to oadp-* branches
22
name: Multi-Arch Binary Push to Quay.io
33

44
on:
55
push:
6-
tags:
7-
- 'v*'
6+
branches:
7+
- 'oadp-*'
88
pull_request:
99

1010

@@ -58,7 +58,7 @@ jobs:
5858
name: Create and Push Multi-Arch Manifest
5959
runs-on: ubuntu-latest
6060
needs: multi-arch-build
61-
if: startsWith(github.ref_name, 'v')
61+
if: startsWith(github.ref_name, 'oadp-')
6262
steps:
6363
- name: Download all artifacts
6464
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)