We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c089af commit a9f0bd6Copy full SHA for a9f0bd6
2 files changed
.github/workflows/reusable-windows-msi.yml
@@ -20,7 +20,8 @@ env:
20
21
jobs:
22
build:
23
- if: inputs.arch != 'ARM64' || github.repository_owner == 'python'
+ # Forks don't have access to Windows on Arm runners. Skip those:
24
+ if: inputs.arch != 'arm64' || github.repository_owner == 'python'
25
name: installer for ${{ inputs.arch }}
26
runs-on: ${{ inputs.os }}
27
timeout-minutes: 60
.github/workflows/reusable-windows.yml
@@ -25,7 +25,7 @@ env:
# Forks don't have access to Windows on Arm runners. Skip those:
28
29
name: Build and test (${{ inputs.arch }})
30
31
0 commit comments