Skip to content

Commit a38f5b4

Browse files
Update workflow file
1 parent 31300a1 commit a38f5b4

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/python-app.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,14 @@ jobs:
6767
working-directory: src/mixin
6868
run: |
6969
go build -o libmixin.a -buildmode=c-archive
70+
- name: Build mixin-python macosx
71+
if: ${{ matrix.os == 'macos-12' }}
72+
run: |
73+
python setup.py bdist_wheel --plat-name macosx-10.15-x86_64
7074
- name: Build mixin-python
75+
if: ${{ matrix.os != 'macos-12' }}
7176
run: |
72-
python setup.py sdist bdist_wheel
77+
python setup.py bdist_wheel
7378
- name: get whl file
7479
id: whlfile
7580
shell: bash

0 commit comments

Comments
 (0)