We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3792e18 commit 4180abdCopy full SHA for 4180abd
1 file changed
.github/workflows/wheels.yml
@@ -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
21
+ name: dist
22
+ path: dist
0 commit comments