We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f13019 commit ee7c6d5Copy full SHA for ee7c6d5
1 file changed
.github/workflows/docker.yml
@@ -38,6 +38,7 @@ jobs:
38
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
39
- name: Build and push
40
uses: docker/build-push-action@v2
41
+ id: build
42
with:
43
context: .
44
push: true
@@ -46,5 +47,4 @@ jobs:
46
47
- name: Sign the images
48
env:
49
DIGEST: ${{ steps.build.outputs.digest }}
- TAGS: ${{ steps.docker_meta.outputs.tags }}
50
- run: cosign sign --yes "${TAGS}@${DIGEST}"
+ run: cosign sign --yes "${{ env.REGISTRY }}//${{ env.IMAGE_NAME }}@${DIGEST}"
0 commit comments