Skip to content

Commit

Permalink
More iterating.
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed Apr 22, 2024
1 parent 4a1b424 commit b5e3c8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-dispatch-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ permissions:
jobs:
linux:
name: ${{inputs.name}}
continue-on-error: ${{ ! startsWith(inputs.dispatch, 'linux') }}
# continue-on-error: ${{ ! startsWith(inputs.dispatch, 'linux') }}
outputs:
success: ${{ steps.done.outputs.SUCCESS }}
permissions:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

windows:
name: ${{inputs.name}}
continue-on-error: ${{ ! startsWith(inputs.dispatch, 'windows') }}
# continue-on-error: ${{ ! startsWith(inputs.dispatch, 'windows') }}
outputs:
success: ${{ steps.done.outputs.SUCCESS }}
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-dispatch-two-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
consumers:
needs: producers
# dispatch-job's result is always false, check the outputs instead. See ci-dispatch-job.yml for more information.
if: ${{ failure() && !cancelled() && needs.producers.outputs.success }}
if: ${{ !cancelled() && fromJson(needs.producers.outputs.success) }}
permissions:
id-token: write
contents: read
Expand Down

0 comments on commit b5e3c8d

Please sign in to comment.