Skip to content

Commit b0f2325

Browse files
author
Gary Lockett
committed
set-output deprecation changed how multilines are handled
Signed-off-by: Gary Lockett <[email protected]>
1 parent 3934950 commit b0f2325

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/create-additional-action-tags.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ jobs:
1616
TAG=${GITHUB_REF/refs\/tags\//}
1717
MAJOR="v$(echo ${TAG} | cut -d. -f1)"
1818
MINOR="${MAJOR}.$(echo ${GITHUB_REF} | cut -d. -f2)"
19-
echo "tags=${MAJOR}%0A${MINOR}" >> $GITHUB_OUTPUT
19+
echo "tags=${MAJOR}<<EOF" >> $GITHUB_OUTPUT
20+
echo "${MINOR}" >> $GITHUB_OUTPUT
21+
echo "EOF" >> $GITHUB_OUTPUT
2022
2123
update-tags:
2224
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)