File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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")
You can’t perform that action at this time.
0 commit comments