Skip to content

Commit

Permalink
Merge pull request #166 from internalsystemerror/fix-tags-needing-mul…
Browse files Browse the repository at this point in the history
…tiline

`set-output` deprecation changed how multilines are handled
  • Loading branch information
Gary Lockett committed Dec 19, 2022
2 parents 6a84a59 + a18c588 commit 8f0274d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 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,11 @@ 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
EOF="$(uuidgen)"
echo "tags<<${EOF}" >> $GITHUB_OUTPUT
echo "${MAJOR}" >> $GITHUB_OUTPUT
echo "${MINOR}" >> $GITHUB_OUTPUT
echo "${EOF}" >> $GITHUB_OUTPUT
update-tags:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8f0274d

Please sign in to comment.