modified: .github/workflows/main.yml

This commit is contained in:
elseif
2026-09-03 19:30:26 +08:00
parent f20530ed8c
commit 88f8a40223

View File

@@ -92,30 +92,30 @@ jobs:
echo "Upgrades V6: $V6_MATRIX"
echo "Upgrades V7: $V7_MATRIX"
Patch_V6:
needs: Check_Versions
if: ${{ needs.Check_Versions.outputs.upgrades_v6 != '[]' }}
uses: ./.github/workflows/patch_v6.yml
strategy:
matrix:
target: ${{ fromJson(needs.Check_Versions.outputs.upgrades_v6) }}
fail-fast: false
with:
channel: ${{ matrix.target.channel }}
version: ${{ matrix.target.version }}
release: ${{ github.event_name == 'workflow_dispatch' && inputs.release || github.event_name != 'workflow_dispatch' && true }}
secrets: inherit
# Patch_V6:
# needs: Check_Versions
# if: ${{ needs.Check_Versions.outputs.upgrades_v6 != '[]' }}
# uses: ./.github/workflows/patch_v6.yml
# strategy:
# matrix:
# target: ${{ fromJson(needs.Check_Versions.outputs.upgrades_v6) }}
# fail-fast: false
# with:
# channel: ${{ matrix.target.channel }}
# version: ${{ matrix.target.version }}
# release: ${{ github.event_name == 'workflow_dispatch' && inputs.release || github.event_name != 'workflow_dispatch' && true }}
# secrets: inherit
Patch_V7:
needs: Check_Versions
if: ${{ needs.Check_Versions.outputs.upgrades_v7 != '[]' }}
uses: ./.github/workflows/patch_v7.yml
strategy:
matrix:
target: ${{ fromJson(needs.Check_Versions.outputs.upgrades_v7) }}
fail-fast: false
with:
channel: ${{ matrix.target.channel }}
version: ${{ matrix.target.version }}
release: ${{ github.event_name == 'workflow_dispatch' && inputs.release || github.event_name != 'workflow_dispatch' && true }}
secrets: inherit
# Patch_V7:
# needs: Check_Versions
# if: ${{ needs.Check_Versions.outputs.upgrades_v7 != '[]' }}
# uses: ./.github/workflows/patch_v7.yml
# strategy:
# matrix:
# target: ${{ fromJson(needs.Check_Versions.outputs.upgrades_v7) }}
# fail-fast: false
# with:
# channel: ${{ matrix.target.channel }}
# version: ${{ matrix.target.version }}
# release: ${{ github.event_name == 'workflow_dispatch' && inputs.release || github.event_name != 'workflow_dispatch' && true }}
# secrets: inherit