From 2e3743308a7925d9418fdde8d5844128e300891e Mon Sep 17 00:00:00 2001 From: WeberJulian Date: Fri, 24 Jun 2022 15:16:35 +0200 Subject: [PATCH] remove check and use only manylinux --- .github/workflows/pypi-release.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 2c1fd4bf..561bc0db 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -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]