Skip to content

Commit

Permalink
make delete explicitly depend on delete-temp-images
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe committed Aug 6, 2024
1 parent 764d07e commit bde5e9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ jobs:
cuda${{ matrix.CUDA_VER }}-\
py${{ matrix.PYTHON_VER }}"
delete-temp-images:
if: '!cancelled()'
needs: [compute-matrix, build-multiarch-manifest]
if: ${{ !cancelled() && needs.build-multiarch-manifest.result == 'success' }}
needs: [compute-matrix, build-multiarch-manifest, test]
strategy:
matrix: ${{ fromJSON(needs.compute-matrix.outputs.MATRIX) }}
fail-fast: false
Expand Down

0 comments on commit bde5e9a

Please sign in to comment.