Merge pull request #16480 from cevich/fix_gha_outputs

[CI:DOCS] GHA: Fix typo setting output parameter
This commit is contained in:
Chris Evich 2022-11-10 14:04:22 -05:00 committed by GitHub
commit 3c8472196c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,5 +87,5 @@ failures=$((records/2))
# Set the output of this step.
# Ref: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter
# shellcheck disable=SC2154
echo "failures::$failures" >> $GITHUB_OUTPUT
echo "failures=$failures" >> $GITHUB_OUTPUT
echo "Total failed Cirrus-CI cron builds: $failures"