Skip to content

Commit 597255b

Browse files
authored
Updates (#6)
* fix workflow and scripts to also not use deprecated set-output * bump versions of actions in some workflows * use github outputs context * OUTPUT not OUTPUTS
1 parent 52cbdbe commit 597255b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/check-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ exists=$(
1616

1717
if [[ "$exists" == true ]]; then
1818
echo "Release ${release_version} already exists."
19-
echo "release_exists=true" >>$GITHUB_OUTPUTS
19+
echo "release_exists=true" >>"$GITHUB_OUTPUT"
2020
else
21-
echo "release_exists=false" >>$GITHUB_OUTPUTS
21+
echo "release_exists=false" >>"$GITHUB_OUTPUT"
2222

2323
fi

0 commit comments

Comments
 (0)