Skip to content

Commit 3569033

Browse files
authored
Merge pull request #30 from WarnerMedia/bugfix/build-architecture
Bugfix/build architecture
2 parents 8f828fa + fbb76f6 commit 3569033

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/binaries.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Binaries
2-
description: build standalone executables using PyInstaller
2+
# build standalone executables using PyInstaller
33

44
on:
55
push:
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [ubuntu-latest, macos-latest, windows-latest]
15+
os: [ubuntu-latest, macos-15-intel, windows-latest]
1616
runs-on: ${{ matrix.os }}
1717
name: Build on ${{ matrix.os }}
1818
steps:
@@ -22,7 +22,6 @@ jobs:
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: '3.13'
25-
architecture: 'x64'
2625
- name: Setup virtual env
2726
run: |
2827
python -m venv ./venv
@@ -74,7 +73,6 @@ jobs:
7473
uses: actions/setup-python@v5
7574
with:
7675
python-version: '3.13'
77-
architecture: 'arm64'
7876
- name: Setup virtual env
7977
run: |
8078
python -m venv ./venv

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Release
22

3-
description: Create a GitHub release and attach built binaries when a version tag is pushed
3+
# Create a GitHub release and attach built binaries when a version tag is pushed
44

55
on:
66
push:

0 commit comments

Comments
 (0)