diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9008a37..bb68b65 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,18 +34,18 @@ jobs: run: | python -m pytest --junitxml ./reports/results.xml --cov-config .coveragerc --cov=src - name: Build Package - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + #if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') run: | pip install build python -m build - name: Publish package - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + #if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} skip_existing: true - name: Coveralls - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + #if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: coverallsapp/github-action@master with: github-token: ${{ secrets.COVERALLS_GITHUB_TOKEN }} \ No newline at end of file