File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -565,7 +565,7 @@ jobs:
565565 staging-release-images-windows :
566566 name : Release Windows images
567567 # Cannot be done by Skopeo on a Linux runner unfortunately
568- runs-on : windows-latest
568+ runs-on : ${{ matrix.runs_on }}
569569 needs :
570570 - staging-release-version-check
571571 environment : release
@@ -574,10 +574,11 @@ jobs:
574574 strategy :
575575 fail-fast : false
576576 matrix :
577- tag : [
578- " windows-2022-${{ github.event.inputs.version }}" ,
579- " windows-2025-${{ github.event.inputs.version }}"
580- ]
577+ include :
578+ - tag : " windows-2022-${{ github.event.inputs.version }}"
579+ runs_on : windows-latest
580+ - tag : " windows-2025-${{ github.event.inputs.version }}"
581+ runs_on : windows-2025
581582 steps :
582583 - name : Login to GitHub Container Registry
583584 uses : docker/login-action@v3
You can’t perform that action at this time.
0 commit comments