Skip to content

Commit d00bc96

Browse files
authored
Merge pull request #128 from git-for-windows/use-hosted-windows-11-arm-runners
Use the hosted Windows/ARM64 runners
2 parents 2c2e9a4 + e1ee314 commit d00bc96

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ env:
3737
jobs:
3838
build:
3939
if: github.event.repository.owner.login == 'git-for-windows'
40-
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && fromJSON('["Windows", "ARM64"]') || 'windows-latest' }}
40+
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && 'windows-11-arm' || 'windows-latest' }}
4141
steps:
4242
- uses: actions/checkout@v4
4343

.github/workflows/git-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ defaults:
4343

4444
jobs:
4545
pkg:
46-
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && fromJSON('["Windows", "ARM64"]') || 'windows-latest' }}
46+
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && 'windows-11-arm' || 'windows-latest' }}
4747
outputs:
4848
artifact_matrix: ${{ steps.artifact-build-matrix.outputs.result }}
4949
msystem: ${{steps.configure-environment.outputs.MSYSTEM}}
@@ -357,7 +357,7 @@ jobs:
357357
append-text: "${{ format('Completed: {0}', job.status) }}."
358358
conclusion: ${{ job.status }}
359359
artifacts:
360-
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && fromJSON('["Windows", "ARM64"]') || 'windows-latest' }}
360+
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && 'windows-11-arm' || 'windows-latest' }}
361361
needs: pkg
362362
env:
363363
MSYSTEM: ${{ needs.pkg.outputs.msystem }}

0 commit comments

Comments
 (0)