File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -143,8 +143,8 @@ jobs:
143
143
# The final command becomes `docker buildx imagetools create -t tag1 -t tag2 ... <RUFF_BASE_IMG>@sha256:<sha256_1> <RUFF_BASE_IMG>@sha256:<sha256_2> ...`
144
144
run : |
145
145
docker buildx imagetools create \
146
- " $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")" \
147
- " $(printf "${RUFF_BASE_IMG}@sha256:%s " *)"
146
+ $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
147
+ $(printf "${RUFF_BASE_IMG}@sha256:%s " *)
148
148
149
149
docker-publish-extra :
150
150
name : Publish additional Docker image based on ${{ matrix.image-mapping }}
@@ -288,5 +288,5 @@ jobs:
288
288
readarray -t lines <<< "$DOCKER_METADATA_OUTPUT_ANNOTATIONS"; annotations=(); for line in "${lines[@]}"; do annotations+=(--annotation "$line"); done
289
289
docker buildx imagetools create \
290
290
"${annotations[@]}" \
291
- " $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")" \
292
- " $(printf "${RUFF_BASE_IMG}@sha256:%s " *)"
291
+ $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
292
+ $(printf "${RUFF_BASE_IMG}@sha256:%s " *)
Original file line number Diff line number Diff line change @@ -268,9 +268,9 @@ jobs:
268
268
RELEASE_COMMIT : " ${{ github.sha }}"
269
269
run : |
270
270
# Write and read notes from a file to avoid quoting breaking things
271
- echo "$ANNOUNCEMENT_BODY" > " $RUNNER_TEMP/notes.txt"
271
+ echo "$ANNOUNCEMENT_BODY" > $RUNNER_TEMP/notes.txt
272
272
273
- gh release create "${{ needs.plan.outputs.tag }}" --target "$RELEASE_COMMIT" " $PRERELEASE_FLAG" --title "$ANNOUNCEMENT_TITLE" --notes-file "$RUNNER_TEMP/notes.txt" artifacts/*
273
+ gh release create "${{ needs.plan.outputs.tag }}" --target "$RELEASE_COMMIT" $PRERELEASE_FLAG --title "$ANNOUNCEMENT_TITLE" --notes-file "$RUNNER_TEMP/notes.txt" artifacts/*
274
274
275
275
custom-notify-dependents :
276
276
needs :
You can’t perform that action at this time.
0 commit comments