chore(release.yml): remove commented out code and unused steps to cle… #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to PyPI | |
on: | |
# release: | |
# types: [published] | |
push: | |
branches: | |
- master | |
jobs: | |
tests: | |
uses: ./.github/workflows/tests.yml | |
release: | |
runs-on: ubuntu-22.04 | |
needs: tests | |
steps: | |
- name: Configure poetry for publishing | |
run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} | |
- name: Publish package to PyPI | |
# run: poetry publish --build | |
run: echo "Published" |