Skip to content

Commit c3fb498

Browse files
authored
Update build_arm.yml
1 parent 63c821e commit c3fb498

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

.github/workflows/build_arm.yml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build ARM
1+
name: Build aarch64 Linux
22
on: [push, pull_request]
33
jobs:
44
build_wheels:
@@ -35,27 +35,28 @@ jobs:
3535
- uses: actions/upload-artifact@v3
3636
with:
3737
path: ./wheelhouse/*.whl
38-
# publish:
39-
# needs: build_wheels
40-
# name: Publish to PyPI
41-
# runs-on: ubuntu-latest
4238

43-
# steps:
44-
# - name: Set up Python
45-
# uses: actions/[email protected]
46-
# with:
47-
# python-version: '3.x'
48-
# - name: Install twine
49-
# run: |
50-
# python -m pip install --upgrade pip
51-
# pip install twine
52-
# - name: Download Artifacts
53-
# uses: actions/download-artifact@v3
54-
# with:
55-
# name: wheels
56-
# path: ./wheelhouse
57-
# - name: Publish
58-
# env:
59-
# TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
60-
# TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
61-
# run: twine upload ./wheelhouse/* --skip-existing
39+
publish:
40+
needs: build_wheels
41+
name: Publish to PyPI
42+
runs-on: ubuntu-latest
43+
44+
steps:
45+
- name: Set up Python
46+
uses: actions/[email protected]
47+
with:
48+
python-version: '3.x'
49+
- name: Install twine
50+
run: |
51+
python -m pip install --upgrade pip
52+
pip install twine
53+
- name: Download Artifacts
54+
uses: actions/download-artifact@v3
55+
with:
56+
name: wheels
57+
path: ./wheelhouse
58+
- name: Publish
59+
env:
60+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
61+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
62+
run: twine upload ./wheelhouse/* --skip-existing

0 commit comments

Comments
 (0)