Skip to content

Commit

Permalink
set-output deprecation changed how multilines are handled
Browse files Browse the repository at this point in the history
Signed-off-by: Gary Lockett <gary@creativecow.uk>
  • Loading branch information
Gary Lockett committed Dec 19, 2022
1 parent dc1935a commit 179df9e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/create-additional-action-tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
TAG=${GITHUB_REF/refs\/tags\//}
MAJOR="v$(echo ${TAG} | cut -d. -f1)"
MINOR="${MAJOR}.$(echo ${GITHUB_REF} | cut -d. -f2)"
echo "tags=${MAJOR}%0A${MINOR}" >> $GITHUB_OUTPUT
echo "tags=${MAJOR}<<EOF" >> $GITHUB_OUTPUT
echo "${MINOR}" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
update-tags:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 179df9e

Please sign in to comment.