Skip to content

Commit 4124f82

Browse files
committed
Archive the wheels that were created in the CI build.
1 parent 13fdd71 commit 4124f82

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,30 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v2
12+
1213
- name: Set up Python 3.8
1314
uses: actions/setup-python@v2
1415
with:
1516
python-version: 3.8
17+
1618
- name: Install Dependency
1719
run: |
1820
pip install cython
21+
1922
- name: Building wheel
2023
run: |
2124
make -j3 wheel_manylinux
25+
2226
- name: Copy wheels in dist
2327
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+
2436
- name: Push build artifacts to PyPI
2537
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
2638
uses: pypa/[email protected]

0 commit comments

Comments
 (0)