Skip to content

Commit 4180abd

Browse files
committed
first try at wheels
1 parent 3792e18 commit 4180abd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/wheels.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Wheels
2+
on:
3+
release:
4+
types:
5+
- created
6+
jobs:
7+
wheels:
8+
runs-on: windows-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Set up Python 3.x
12+
uses: actions/setup-python@v2
13+
with:
14+
python-version: '3.x'
15+
- name: Install dependencies
16+
run: python -m pip install --upgrade setuptools wheel
17+
- name: Build wheels
18+
run: python setup.py bdist_wheel
19+
- uses: actions/upload-artifact@v2
20+
with:
21+
name: dist
22+
path: dist

0 commit comments

Comments
 (0)