Skip to content

Commit

Permalink
chore(GHA): consistent machine architecture string for intel-compat. …
Browse files Browse the repository at this point in the history
…machines
  • Loading branch information
ibressler committed Feb 11, 2025
1 parent 4d447ec commit 1771c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
shell: python
run: |
import os, platform
machine = platform.machine().replace("x86_", "intel")
machine = platform.machine().replace("x86_", "intel").replace("AMD", "intel")
with open(os.environ["GITHUB_OUTPUT"], "a") as fd:
fd.write(f"res={platform.system()}-{machine}\n")
Expand Down

0 comments on commit 1771c12

Please sign in to comment.