Skip to content

Commit

Permalink
Fix syntax for new multiline output
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Camata <[email protected]>
  • Loading branch information
douglascamata committed Jul 28, 2023
1 parent 8ecbf9f commit 2e72951
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,22 @@ runs:
shell: bash
- id: docker-client-version
run: |
echo "docker-version=$(docker version)" >> $GITHUB_OUTPUT
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "docker-version<<$EOF" >> $GITHUB_OUTPUT
docker version >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
shell: bash
- id: docker-compose-version
run: |
echo "docker-compose-version=$(docker compose version)" >> $GITHUB_OUTPUT
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "docker-compose-version<<$EOF" >> $GITHUB_OUTPUT
docker compose version >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
shell: bash
- id: colima-version
run: |
echo "colima-version=$(colima version)" >> $GITHUB_OUTPUT
EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
echo "colima-version=$EOF" >> $GITHUB_OUTPUT
colima version >> $GITHUB_OUTPUT
echo "$EOF" >> $GITHUB_OUTPUT
shell: bash

0 comments on commit 2e72951

Please sign in to comment.