From b98df54a0abd45ea67f02e6c3ff330db015cb5f0 Mon Sep 17 00:00:00 2001 From: Matt Phelps Date: Mon, 17 Oct 2022 10:23:03 -0500 Subject: [PATCH] Fix set-output deprecate; keys are case sensitive --- github-action/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-action/entrypoint.sh b/github-action/entrypoint.sh index ec22c359..17ec5411 100755 --- a/github-action/entrypoint.sh +++ b/github-action/entrypoint.sh @@ -8,4 +8,4 @@ RESULT="${RESULT//$'\r'/'%0D'}" echo "::debug::\$RESULT: $RESULT" # updating from # https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter -echo "RESULT=$RESULT" >> $GITHUB_OUTPUT \ No newline at end of file +echo "result=$RESULT" >> $GITHUB_OUTPUT