From 48b6948a76401d6e0d368a11d413c5ea8305e8bc Mon Sep 17 00:00:00 2001 From: Ethan O'Brien <77750390+ethanaobrien@users.noreply.github.com> Date: Wed, 10 Jul 2024 22:57:06 -0500 Subject: [PATCH] Remove not needed functions from docker.yml --- .github/workflows/docker.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5954454..2f56c04 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -59,7 +59,6 @@ jobs: latest=false tags: | type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }} - type=pep440,pattern={{raw}} - name: Build and push all platforms id: build-and-push @@ -77,14 +76,3 @@ jobs: # https://github.com/rust-lang/cargo/issues/10583 build-args: | CARGO_NET_GIT_FETCH_WITH_CLI=true - - - name: Sign the images with GitHub OIDC Token - env: - DIGEST: ${{ steps.build-and-push.outputs.digest }} - TAGS: ${{ steps.set-tag.outputs.tags }} - run: | - images="" - for tag in ${TAGS}; do - images+="${tag}@${DIGEST} " - done - cosign sign --yes ${images}