Skip to content

Commit

Permalink
Merge pull request #94 from tobiasehlert/patch-1
Browse files Browse the repository at this point in the history
fix: replacing deprecated set-output to use env instead
  • Loading branch information
khos2ow authored Nov 9, 2022
2 parents ac2a6b5 + 18dc76d commit cfde42f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ fi
set +e
num_changed=$(git_status)
set -e
echo "::set-output name=num_changed::${num_changed}"
echo "num_changed=${num_changed}" >> $GITHUB_OUTPUT

if [ "${INPUT_GIT_PUSH}" = "true" ]; then
git_commit
Expand Down

0 comments on commit cfde42f

Please sign in to comment.