Skip to content

Commit a7095fa

Browse files
committed
workflows: fix github action runner for staging
Signed-off-by: Eduardo Silva <[email protected]>
1 parent 7a52469 commit a7095fa

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/staging-release.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)