Update .forgejo/workflows/build-images.yaml
This commit is contained in:
parent
27f17ec618
commit
762db57e66
1 changed files with 3 additions and 4 deletions
|
@ -71,15 +71,14 @@ jobs:
|
||||||
runs-on: ci-os
|
runs-on: ci-os
|
||||||
needs: read-channels
|
needs: read-channels
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
#fail-fast: false
|
||||||
matrix: ${{ fromJSON(needs.read-channels.outputs.channels) }}
|
matrix: ${{ fromJSON(needs.read-channels.outputs.channels) }} # This means: for each object in the array, we have "matrix.channel" and "matrix.platform"
|
||||||
# This means: for each object in the array, we have "matrix.channel" and "matrix.platform"
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
echo "Matrix raw => ${{ toJson(matrix) }}"
|
echo "Matrix raw => ${{ string(matrix) }}"
|
||||||
echo "Channel => ${{ matrix.channel }}"
|
echo "Channel => ${{ matrix.channel }}"
|
||||||
echo "Platform => ${{ matrix.platform }}"
|
echo "Platform => ${{ matrix.platform }}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue