Skip to content

Commit

Permalink
build: change set-output to env vars #348
Browse files Browse the repository at this point in the history
  • Loading branch information
McShelby committed Nov 4, 2022
1 parent 3541024 commit 07fe4f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/check_milestone/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ runs:
shell: bash
run: |
if [ "${{ fromJSON(steps.closed_issues.outputs.data).search.issueCount > 0 && fromJSON(steps.open_issues.outputs.data).search.issueCount == 0 && steps.unique_tag.outputs.exists == 'false' }}" = "true" ]; then
echo "::set-output name=outcome::success"
echo "outcome=success" >> $GITHUB_OUTPUT
else
echo "::set-output name=outcome::failure"
echo "outcome=failure" >> $GITHUB_OUTPUT
fi
- name: Log results and exit
Expand Down

0 comments on commit 07fe4f5

Please sign in to comment.