Skip to content

Commit

Permalink
fix: updates
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Buhl <[email protected]>
  • Loading branch information
onedr0p committed Dec 31, 2024
1 parent d5bf27f commit f7f5ccc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/pre-pull-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ jobs:
shell: bash
run: |
images=$(jq --null-input \
--argjson f1 "${{ needs.default-images.outputs.images }}" \
--argjson f2 "${{ needs.pull-request-images.outputs.images }}" \
--argjson f1 "${{ fromJson(needs.default-images.outputs.images) }}" \
--argjson f2 "${{ fromJson(needs.pull-request-images.outputs.images) }}" \
'($f1 - $f2) + ($f2 - $f1)' \
)
echo "images=${images}" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -191,8 +191,11 @@ jobs:
# shell: bash
# run: brew install siderolabs/tap/talosctl

# - name: Pre-pull Image
# run: talosctl -n $NODE_IP image pull ${{ matrix.images }}

- name: Pre-pull Image
run: talosctl -n $NODE_IP image pull ${{ matrix.images }}
run: echo ${{ matrix.images }}

# Summarize matrix https://github.community/t/status-check-for-a-matrix-jobs/127354/7
pre-pull-images-success:
Expand Down

0 comments on commit f7f5ccc

Please sign in to comment.