Skip to content

Commit

Permalink
chore(cd): remove deprecated set-output usage
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Dec 22, 2022
1 parent e2cd07b commit 5187f02
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
r="${r//'%'/'%25'}"
r="${r//$'\n'/'%0A'}"
r="${r//$'\r'/'%0D'}"
echo "::set-output name=release_body::$r"
echo 'RELEASE_BODY<<EOF' >> $GITHUB_ENV
echo "$r" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
publish-github:
name: Publish on GitHub
Expand Down

0 comments on commit 5187f02

Please sign in to comment.