mirror of https://github.com/coqui-ai/TTS.git
remove check and use only manylinux
This commit is contained in:
parent
c7018f19c4
commit
2e3743308a
|
@ -11,15 +11,15 @@ jobs:
|
|||
build-sdist:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Verify tag matches version
|
||||
run: |
|
||||
set -ex
|
||||
version=$(cat TTS/VERSION)
|
||||
tag="${GITHUB_REF/refs\/tags\/}"
|
||||
if [[ "v$version" != "$tag" ]]; then
|
||||
exit 1
|
||||
fi
|
||||
# - uses: actions/checkout@v2
|
||||
# - name: Verify tag matches version
|
||||
# run: |
|
||||
# set -ex
|
||||
# version=$(cat TTS/VERSION)
|
||||
# tag="${GITHUB_REF/refs\/tags\/}"
|
||||
# if [[ "v$version" != "$tag" ]]; then
|
||||
# exit 1
|
||||
# fi
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
|
@ -50,11 +50,11 @@ jobs:
|
|||
with:
|
||||
python-versions: 'cp37-cp37m'
|
||||
- run: |
|
||||
python -m pip install dist/*.whl
|
||||
python -m pip install dist/*-manylinux*.whl
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: wheel-${{ matrix.python-version }}
|
||||
path: dist/*.whl
|
||||
path: dist/*-manylinux*.whl
|
||||
publish-artifacts:
|
||||
runs-on: ubuntu-20.04
|
||||
needs: [build-sdist, build-wheels]
|
||||
|
|
Loading…
Reference in New Issue