Skip to content

Commit 193b56a

Browse files
authored
Merge pull request #52 from mwcraig/fix-linux-wheels
Fix bad yaml
2 parents a23b5d1 + da46648 commit 193b56a

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

.github/workflows/upload_pypi.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -39,28 +39,28 @@ jobs:
3939
4040
linux_wheels:
4141
runs-on: ubuntu-latest
42-
steps:
43-
- uses: actions/checkout@v1
44-
- name: Set up Python
45-
uses: actions/setup-python@v1
46-
with:
47-
python-version: 3.8
48-
- name: Install dependencies
49-
run: |
50-
python -m pip install --upgrade pip
51-
pip install twine
52-
- name: Python wheels manylinux build
53-
uses: RalfG/[email protected]
54-
with:
55-
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38'
56-
build-requirements: 'setuptools cython'
57-
- name: Build and publish wheel
58-
env:
59-
TWINE_USERNAME: __token__
60-
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_TOKEN }}
61-
run: |
62-
python setup.py bdist_wheel
63-
twine upload wheelhouse/*-manylinux1_x86_64.whl
42+
steps:
43+
- uses: actions/checkout@v1
44+
- name: Set up Python
45+
uses: actions/setup-python@v1
46+
with:
47+
python-version: 3.8
48+
- name: Install dependencies
49+
run: |
50+
python -m pip install --upgrade pip
51+
pip install twine
52+
- name: Python wheels manylinux build
53+
uses: RalfG/[email protected]
54+
with:
55+
python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38'
56+
build-requirements: 'setuptools cython'
57+
- name: Build and publish wheel
58+
env:
59+
TWINE_USERNAME: __token__
60+
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_TOKEN }}
61+
run: |
62+
python setup.py bdist_wheel
63+
twine upload wheelhouse/*-manylinux1_x86_64.whl
6464
6565
sdist:
6666
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)