From e9d87975acaad1a4e82d502e7dfd0abc7fb96c63 Mon Sep 17 00:00:00 2001 From: elseif Date: Thu, 3 Sep 2026 19:51:38 +0800 Subject: [PATCH] modified: .github/workflows/main.yml --- .github/workflows/main.yml | 53 +++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 27 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ff7e87..36db449 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,7 +73,6 @@ jobs: ) ') fi - echo "CANDIDATES: $CANDIDATES" VERSION_FILTER="${{ github.event.inputs.version || 'all' }}" V6_MATRIX=$(echo "$CANDIDATES" | jq -c 'map(select(.majorVersion == "6" ))') @@ -88,30 +87,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 \ No newline at end of file + 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 \ No newline at end of file