Skip to content

Commit

Permalink
re-organize
Browse files Browse the repository at this point in the history
  • Loading branch information
joshjohanning authored Oct 10, 2024
1 parent dfc58f7 commit 80b0fab
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dynamic-matrix-subvalues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,13 @@ jobs:
name: ${{ matrix.repositories.name }}-1
path: ${{ matrix.repositories.name }}.txt

if-failure:
needs: [prepare-1, run-matrix-1]
runs-on: ubuntu-latest
if: always() && needs.run-matrix-1.outputs.is-failure == 'true'
steps:
- run: echo "${{ needs.run-matrix-1.outputs.is-failure }}"

run-matrix-2:
needs: prepare-2
name: ${{ matrix.repositories.name }}
Expand Down Expand Up @@ -186,13 +193,6 @@ jobs:
- run: echo ${{ needs.prepare-1.outputs.repositories }}
- run: echo ${{ needs.prepare-2.outputs.repositories }}

if-failure:
needs: [prepare-1, run-matrix-1]
runs-on: ubuntu-latest
if: always() && needs.run-matrix-1.outputs.is-failure == 'true'
steps:
- run: echo "${{ needs.run-matrix-1.outputs.is-failure }}"

# post:
# if: always()
# needs: run-matrix
Expand Down

0 comments on commit 80b0fab

Please sign in to comment.