Skip to content

Commit 8763b1e

Browse files
committed
ci: don't escape '='
1 parent 2f98b13 commit 8763b1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/wc-build-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
id: metadata
9090
with:
9191
images: ${{ needs.sanitize-image-name.outputs.fully-qualified-image-name }}
92-
- name: Generate image LABEL for devcontainer.metadata
92+
- name: Generate image label for devcontainer.metadata
9393
run: |
9494
set -Eeuo pipefail
9595
@@ -100,7 +100,7 @@ jobs:
100100
fi
101101
102102
# the sed expression is a workaround for quotes being eaten in arrays (e.g. ["x", "y", "z"] -> ["x",y,"z"])
103-
echo "metadata=devcontainer.metadata\=$(jq -cj '[.]' "${DEVCONTAINER_METADATA}" | sed 's/,"/, "/g')" >> "$GITHUB_OUTPUT"
103+
echo "metadata=devcontainer.metadata=$(jq -cj '[.]' "${DEVCONTAINER_METADATA}" | sed 's/,"/, "/g')" >> "$GITHUB_OUTPUT"
104104
env:
105105
DEVCONTAINER_METADATA: ${{ inputs.devcontainer-metadata }}
106106
id: devcontainer-metadata

0 commit comments

Comments
 (0)