Skip to content

Commit 293e981

Browse files
edits
1 parent 8afd744 commit 293e981

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/wheel-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ jobs:
125125
import json
126126
runner_types = []
127127
if "${{ inputs.build_linux_amd }}" == "true":
128-
runner.append("ubuntu-24.04")
128+
runners.append("ubuntu-24.04")
129129
runner_types.append("x86_64")
130130
if "${{ inputs.build_linux_arm }}" == "true":
131-
runner.append("ubuntu-24.04-arm")
131+
runners.append("ubuntu-24.04-arm")
132132
runner_types.append("aarch64")
133133
python_to_venv = {
134134
'3.9' : ['9'],
@@ -140,7 +140,7 @@ jobs:
140140
matrix = [{"python": py, "venv": venv, "type": type}
141141
for py, venvs in python_to_venv.items()
142142
for venv in venvs
143-
for runner in runner
143+
for runner in runners
144144
for type in runner_types]
145145
with open(os.environ.get("GITHUB_OUTPUT"), "a") as file:
146146
file.write(f"matrix={json.dumps(matrix)}\n")

0 commit comments

Comments
 (0)