Skip to content

Commit

Permalink
Replace double with single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
dsotirakis committed Jul 10, 2024
1 parent 62d5306 commit 7764215
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/create-and-push-image-manifests/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ runs:
working-directory: /tmp/digests
shell: bash
run: |
"docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ $(printf '${{ inputs.full-image-name }}@sha256:%s ' *)"
'docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ $(printf '${{ inputs.full-image-name }}@sha256:%s ' *)'
- name: Inspect image
shell: bash
run: |
"docker buildx imagetools inspect ${{ inputs.full-image-name }}:${{ steps.meta.outputs.version }}"
'docker buildx imagetools inspect ${{ inputs.full-image-name }}:${{ steps.meta.outputs.version }}'

0 comments on commit 7764215

Please sign in to comment.