Skip to content

Commit

Permalink
testing 10
Browse files Browse the repository at this point in the history
Signed-off-by: Eguzki Astiz Lezaun <[email protected]>
  • Loading branch information
eguzki committed Oct 21, 2024
1 parent bb6c669 commit 6b291e2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ jobs:
image=`make print-bundle-image`
echo image=$image >> $GITHUB_OUTPUT
- name: Verify referenced bundle has previously been built
if: ${{ ! contains(needs.build-bundle.outputs.build-tags, steps.operator-bundle.outputs.image) }}
# Only check on tags. On (release) branches, the bundle image name used to build the catalog
# may not match the bundle being built.
# For (release) branches, the workflow builds operator bundle image tags with sha and branch name.
if: ${{ startsWith(github.ref, 'refs/tags/') && ! contains(needs.build-bundle.outputs.build-tags, steps.operator-bundle.outputs.image) }}
run: exit 1
- name: Run make catalog-build
run: make catalog-build
Expand Down

0 comments on commit 6b291e2

Please sign in to comment.