Update .forgejo/workflows/build-images.yaml

This commit is contained in:
Tommy 2025-01-03 17:16:54 +00:00
parent 27f17ec618
commit 762db57e66
Signed by: Mooo[bot]
GPG key ID: CF3AFE4D5B62BB9A

View file

@ -71,15 +71,14 @@ jobs:
runs-on: ci-os
needs: read-channels
strategy:
fail-fast: false
matrix: ${{ fromJSON(needs.read-channels.outputs.channels) }}
# This means: for each object in the array, we have "matrix.channel" and "matrix.platform"
#fail-fast: false
matrix: ${{ fromJSON(needs.read-channels.outputs.channels) }} # This means: for each object in the array, we have "matrix.channel" and "matrix.platform"
steps:
- name: Checkout
uses: actions/checkout@v4
- run: |
echo "Matrix raw => ${{ toJson(matrix) }}"
echo "Matrix raw => ${{ string(matrix) }}"
echo "Channel => ${{ matrix.channel }}"
echo "Platform => ${{ matrix.platform }}"