We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13fdd71 commit 4124f82Copy full SHA for 4124f82
.github/workflows/ci.yml
@@ -9,18 +9,30 @@ jobs:
9
10
steps:
11
- uses: actions/checkout@v2
12
+
13
- name: Set up Python 3.8
14
uses: actions/setup-python@v2
15
with:
16
python-version: 3.8
17
18
- name: Install Dependency
19
run: |
20
pip install cython
21
22
- name: Building wheel
23
24
make -j3 wheel_manylinux
25
26
- name: Copy wheels in dist
27
run: cp wheelhouse*/fastrlock*.whl dist/
28
29
+ - name: Archive Wheels
30
+ uses: actions/upload-artifact@v2
31
+ with:
32
+ name: wheels
33
+ path: dist/*manylinux*.whl
34
+ if-no-files-found: ignore
35
36
- name: Push build artifacts to PyPI
37
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
38
uses: pypa/[email protected]
0 commit comments