Skip to content

Commit a9f0bd6

Browse files
committed
Update
1 parent 8c089af commit a9f0bd6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/reusable-windows-msi.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ env:
2020

2121
jobs:
2222
build:
23-
if: inputs.arch != 'ARM64' || github.repository_owner == 'python'
23+
# Forks don't have access to Windows on Arm runners. Skip those:
24+
if: inputs.arch != 'arm64' || github.repository_owner == 'python'
2425
name: installer for ${{ inputs.arch }}
2526
runs-on: ${{ inputs.os }}
2627
timeout-minutes: 60

.github/workflows/reusable-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ env:
2525
jobs:
2626
build:
2727
# Forks don't have access to Windows on Arm runners. Skip those:
28-
if: inputs.arch != 'ARM64' || github.repository_owner == 'python'
28+
if: inputs.arch != 'arm64' || github.repository_owner == 'python'
2929
name: Build and test (${{ inputs.arch }})
3030
runs-on: ${{ inputs.os }}
3131
timeout-minutes: 60

0 commit comments

Comments
 (0)