Skip to content

Commit c455ce0

Browse files
committed
Build distribution package on macOS instead of Linux
1 parent e82889c commit c455ce0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build-and-publish-package.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-latest
9+
# This job runs on macOS because we can't upload binary wheels to PyPI for Linux.
10+
# Hence, we produce both a binary *and* a source distribution in this job, but the
11+
# binary distribution is only valid for macOS.
12+
runs-on: macos-latest
1013
name: Build LNT package
1114
steps:
1215
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)