Skip to content

Commit

Permalink
Merge pull request #2 from cloudbeds/emo/fix-deprecated-warnings
Browse files Browse the repository at this point in the history
fix: use `echo "{name}={value}" >> $GITHUB_OUTPUT` for setting output variables
  • Loading branch information
potyl authored Jun 5, 2023
2 parents 7e4119e + bfa0c33 commit c6a13df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ wait_for_workflow_to_finish() {
echo "Waiting for workflow to finish:"
echo "The workflow id is [${last_workflow_id}]."
echo "The workflow logs can be found at ${last_workflow_url}"
echo "::set-output name=workflow_id::${last_workflow_id}"
echo "::set-output name=workflow_url::${last_workflow_url}"
echo "workflow_id=${last_workflow_id}" >> $GITHUB_OUTPUT
echo "workflow_url=${last_workflow_url}" >> $GITHUB_OUTPUT
echo ""

conclusion=null
Expand Down

0 comments on commit c6a13df

Please sign in to comment.