From 63e01a54bbdf30c3e78944a2b7f420182c5c722e Mon Sep 17 00:00:00 2001 From: Adam Cattermole Date: Wed, 11 Oct 2023 09:32:06 +0100 Subject: [PATCH] Disabling bundle verify as workaround for this release --- .github/workflows/build-images.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-images.yaml b/.github/workflows/build-images.yaml index 67e1feb0..3b2a6663 100644 --- a/.github/workflows/build-images.yaml +++ b/.github/workflows/build-images.yaml @@ -120,17 +120,17 @@ jobs: - name: Run make bundle (main) if: ${{ github.ref_name == env.MAIN_BRANCH_NAME }} run: make bundle REGISTRY=${{ env.IMG_REGISTRY_HOST }} ORG=${{ env.IMG_REGISTRY_ORG }} IMAGE_TAG=${{ github.sha }} - - name: Run make bundle (release) - if: ${{ github.ref_name != env.MAIN_BRANCH_NAME }} - run: make bundle fix-csv-replaces REGISTRY=${{ env.IMG_REGISTRY_HOST }} ORG=${{ env.IMG_REGISTRY_ORG }} VERSION=${TAG_NAME/v/} AUTHORINO_VERSION=${{ github.event.inputs.authorinoVersion }} CHANNELS=${{ github.event.inputs.channels }} + # - name: Run make bundle (release) + # if: ${{ github.ref_name != env.MAIN_BRANCH_NAME }} + # run: make bundle fix-csv-replaces REGISTRY=${{ env.IMG_REGISTRY_HOST }} ORG=${{ env.IMG_REGISTRY_ORG }} VERSION=${TAG_NAME/v/} AUTHORINO_VERSION=${{ github.event.inputs.authorinoVersion }} CHANNELS=${{ github.event.inputs.channels }} - name: Git diff run: git diff - name: Verify manifests and bundle (main) if: github.ref_name == env.MAIN_BRANCH_NAME run: make verify-manifests verify-bundle REGISTRY=${{ env.IMG_REGISTRY_HOST }} ORG=${{ env.IMG_REGISTRY_ORG }} IMAGE_TAG=${{ github.sha }} - - name: Verify manifests and bundle (release) - if: ${{ github.ref_name != env.MAIN_BRANCH_NAME }} - run: make verify-manifests verify-bundle REGISTRY=${{ env.IMG_REGISTRY_HOST }} ORG=${{ env.IMG_REGISTRY_ORG }} VERSION=${TAG_NAME/v/} AUTHORINO_VERSION=${{ github.event.inputs.authorinoVersion }} CHANNELS=${{ github.event.inputs.channels }} + # - name: Verify manifests and bundle (release) + # if: ${{ github.ref_name != env.MAIN_BRANCH_NAME }} + # run: make verify-manifests verify-bundle REGISTRY=${{ env.IMG_REGISTRY_HOST }} ORG=${{ env.IMG_REGISTRY_ORG }} VERSION=${TAG_NAME/v/} AUTHORINO_VERSION=${{ github.event.inputs.authorinoVersion }} CHANNELS=${{ github.event.inputs.channels }} - name: Build Image id: build-image uses: redhat-actions/buildah-build@v2