Skip to content

Commit

Permalink
Add missing $
Browse files Browse the repository at this point in the history
  • Loading branch information
samtoxie committed Oct 3, 2024
1 parent cbdf673 commit ae3da0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ jobs:
with:
context: .
push: true
tags: {{ env.REGISTRY }}/${{ env.IMAGE }}:${{ env.VERSION }}
cache-from: type=registry,ref={{ env.REGISTRY }}/${{ env.IMAGE }}:buildcache
cache-to: type=registry,ref={{ env.REGISTRY }}/${{ env.IMAGE }}:buildcache,mode=max,ignore-error=true
tags: ${{ env.REGISTRY }}/${{ env.IMAGE }}:${{ env.VERSION }}
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE }}:buildcache
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE }}:buildcache,mode=max,ignore-error=true

# Sign the resulting Docker image digest except on PRs.
# This will only write to the public Rekor transparency log when the Docker
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Sign the published Docker image
env:
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable
TAGS: {{ env.REGISTRY }}/${{ env.IMAGE }}:${{ env.VERSION }}
TAGS: ${{ env.REGISTRY }}/${{ env.IMAGE }}:${{ env.VERSION }}
DIGEST: ${{ steps.build-and-push.outputs.digest }}
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
Expand Down

0 comments on commit ae3da0c

Please sign in to comment.