Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
- Use Actions release versions
- Add cosign verify action
  • Loading branch information
moschlar committed Oct 5, 2023
1 parent b6d2013 commit c645709
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
contents: read
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio
# with sigstore/fulcio
id-token: write

steps:
Expand All @@ -29,18 +29,18 @@ jobs:
# Install the cosign tool
# https://github.com/sigstore/cosign-installer
- name: Install cosign
uses: sigstore/cosign-installer@f3c664df7af409cb4873aa5068053ba9d61a57b6 #v2.6.0
uses: sigstore/cosign-installer@v2.8.1
with:
cosign-release: 'v1.13.1'


# Workaround: https://github.com/docker/build-push-action/issues/461
# https://github.com/docker/setup-buildx-action
- name: Setup Docker buildx
uses: docker/setup-buildx-action@79abd3f86f79a9d68a23c75a09a9a85889262adf
uses: docker/setup-buildx-action@v1

# https://github.com/docker/login-action
- name: Login to GHCR
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -50,7 +50,7 @@ jobs:

# https://github.com/docker/login-action
# - name: Login to docker hub
# uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
# uses: docker/login-action@v1
# with:
# registry: docker.io
# username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand All @@ -60,7 +60,7 @@ jobs:
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
uses: docker/metadata-action@v3
with:
images: |
ghcr.io/${{ env.IMAGE_NAME }}
Expand All @@ -70,9 +70,10 @@ jobs:
# https://github.com/docker/build-push-action
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@ac9327eae2b366085ac7f6a2d02df8aa8ead720a
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64,linux/armhf
Expand All @@ -88,4 +89,9 @@ jobs:
COSIGN_EXPERIMENTAL: "true"
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}

- name: Verify the signature of the published Docker image
env:
COSIGN_EXPERIMENTAL: "true"
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign verify {}@${{ steps.build-and-push.outputs.digest }}

0 comments on commit c645709

Please sign in to comment.