diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 28e0b97..40dc343 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -143,26 +143,3 @@ jobs: run: tox -vv --notest -e ${{ matrix.tox_env }} - name: Run test suite run: tox --skip-pkg-install -e ${{ matrix.tox_env }} - - publish: - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - needs: [check, coverage] - runs-on: ubuntu-22.04 - steps: - - name: Setup python to build package - uses: actions/setup-python@v4 - with: - python-version: "3.11" - - name: Install build - run: python -m pip install build - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: Build sdist and wheel - run: python -m build -s -w . -o dist - - name: Publish to PyPi - uses: pypa/gh-action-pypi-publish@v1.8.5 - with: - skip_existing: true - user: __token__ - password: ${{ secrets.pypi_password }}