Skip to content

Commit

Permalink
fix: multiline output/input
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Buchleitner <[email protected]>
  • Loading branch information
mabunixda committed Dec 6, 2024
1 parent 90c8d3e commit 375efd0
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,14 @@ jobs:
EOI
)
echo "setting images ${IMAGES}"
echo "settings tag ${TAGS}"
echo "tags=${TAGS}" >> $GITHUB_OUTPUT
echo "images=${IMAGES}" >> $GITHUB_OUTPUT
echo 'tags<<EOF' >> $GITHUB_OUTPUT
echo ${TAGS} >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
echo 'images<<EOF' >> $GITHUB_OUTPUT
echo ${IMAGES} >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
- name: Extract metadata (tags, labels) for Docker
id: meta
Expand All @@ -119,9 +123,6 @@ jobs:
images: ${{ steps.prep.outputs.images }}
tags: ${{ steps.prep.outputs.tags }}

- name: foo
run : |
echo "${{ steps.meta.outputs.json }}"

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 375efd0

Please sign in to comment.