From 0af32a12082236d492a1b7c122ab607f3f6694d6 Mon Sep 17 00:00:00 2001 From: Sam Clark <1059176+samhclark@users.noreply.github.com> Date: Mon, 5 Aug 2024 22:32:41 -0500 Subject: [PATCH] Delete Cosign steps I don't have the public/private key set up and I kinda want to use the OIDC providers instead anyway. --- .github/workflows/build.yaml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9c59d7f..850181e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -55,19 +55,6 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - # Sign container - - uses: sigstore/cosign-installer@v3.5.0 - if: github.event_name != 'pull_request' - - - name: Sign container image - if: github.event_name != 'pull_request' - run: | - cosign sign -y --key env://COSIGN_PRIVATE_KEY ${{ github.actor }}/${{ steps.build_image.outputs.image }}@${TAGS} - env: - TAGS: ${{ steps.push.outputs.outputs && fromJSON(steps.push.outputs.outputs).digest }} - COSIGN_EXPERIMENTAL: false - COSIGN_PRIVATE_KEY: ${{ secrets.SIGNING_SECRET }} - - name: Echo outputs if: github.event_name != 'pull_request' run: |