From 89a0449e689e477d943bf37b47be11e244e84fd7 Mon Sep 17 00:00:00 2001 From: Lenus Walker Date: Thu, 10 Oct 2024 18:42:08 -0400 Subject: [PATCH] bugfix (build): Remove verify image from build.yml to build images. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f9725e7..2ef6eb3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,10 +41,10 @@ jobs: BASE_IMAGE=$(yq '.base-image' ./recipes/${{ matrix.recipe }}) echo "BASE_IMAGE_NAME=$(echo $BASE_IMAGE | sed 's/.*\/.*\///')" >> $GITHUB_ENV - - name: Verify base image - uses: EyeCantCU/cosign-action/verify@v0.3.0 - with: - containers: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_MAJOR_VERSION }} + # - name: Verify base image + # uses: EyeCantCU/cosign-action/verify@v0.3.0 + # with: + # containers: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_MAJOR_VERSION }} # the build is fully handled by the reusable github action - name: Build Custom Image