Skip to content

Commit ed5e868

Browse files
Merge pull request #71 from hjpotter92/master
entrypoint.sh: Replace the usage of `set-output` command
2 parents 4c045f2 + 5ffb28c commit ed5e868

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ elif [[ -n ${FILES_CHANGED} ]]; then
8585
fi
8686

8787
# Finish
88-
echo "::set-output name=files_changed::${FILES_CHANGED}"
89-
echo "::set-output name=branch_name::${BRANCH}"
88+
echo "files_changed=${FILES_CHANGED}" >>"$GITHUB_OUTPUT"
89+
echo "branch_name=${BRANCH}" >>"$GITHUB_OUTPUT"
9090
if [[ ${RET_CODE} != "0" ]]; then
9191
echo -e "\n[ERROR] Check log for errors."
9292
exit 1

0 commit comments

Comments
 (0)