Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix workflow file
  • Loading branch information
3nids authored and nyalldawson committed Feb 8, 2021
1 parent 5bcab88 commit 66b3952
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-tests.yml
Expand Up @@ -185,12 +185,12 @@ jobs:
- name: Process
id: process-vars
env:
- COMMENT_FOUND: ${{ steps.find-comment.outputs.comment-id }}
- COMMENT_CREATED: ${{ steps.create-comment.outputs.comment-id }}
- COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
- CDASH_URL: ${{ needs.build.outputs.cdash_url }}
- JOB_RESULT: ${{ needs.build.result }}
- TESTS_PASS: ${{ needs.build.outputs.tests_pass }}
COMMENT_FOUND: ${{ steps.find-comment.outputs.comment-id }}
COMMENT_CREATED: ${{ steps.create-comment.outputs.comment-id }}
COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
CDASH_URL: ${{ needs.build.outputs.cdash_url }}
JOB_RESULT: ${{ needs.build.result }}
TESTS_PASS: ${{ needs.build.outputs.tests_pass }}
run: |
echo "::set-output name=COMMENT_ID::"$([[ "${COMMENT_FOUND}" -eq "0" ]] && echo ${COMMENT_CREATED} || echo ${COMMENT_FOUND})
if [[ ${JOB_RESULT} -eq "success" ]]; then
Expand Down

0 comments on commit 66b3952

Please sign in to comment.