Skip to content

Commit

Permalink
fix: cleanup workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joryirving committed Jan 10, 2025
1 parent c3b3455 commit f464092
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pre-pull-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ jobs:
paths: ${{ fromJSON(needs.changed-clusters.outputs.matrix) }}
fail-fast: false
outputs:
paths: ${{ needs.changed-clusters.outputs.matrix }}
default: ${{ steps.extract-images.outputs.default }}
pull: ${{ steps.extract-images.outputs.pull }}
steps:
Expand Down Expand Up @@ -142,11 +141,11 @@ jobs:
if: ${{ needs.compare-images.outputs.images != '[]' }}
name: Pre-pull Images
runs-on: ["gha-runner-scale-set"]
needs: ["compare-images"]
needs: ["compare-images", "changed-clusters"]
strategy:
matrix:
images: ${{ fromJSON(needs.compare-images.outputs.images) }}
paths: ${{ fromJSON(needs.extract-images.outputs.paths) }}
paths: ${{ fromJSON(needs.changed-clusters.outputs.matrix) }}
max-parallel: 4
fail-fast: false
steps:
Expand Down

0 comments on commit f464092

Please sign in to comment.