mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-27 01:33:04 +00:00
build: change set-output to env vars #348
This commit is contained in:
parent
3541024573
commit
07fe4f5c73
1 changed files with 2 additions and 2 deletions
4
.github/actions/check_milestone/action.yaml
vendored
4
.github/actions/check_milestone/action.yaml
vendored
|
@ -56,9 +56,9 @@ runs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
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
|
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
|
else
|
||||||
echo "::set-output name=outcome::failure"
|
echo "outcome=failure" >> $GITHUB_OUTPUT
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Log results and exit
|
- name: Log results and exit
|
||||||
|
|
Loading…
Reference in a new issue