diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c36fff2..f98c1ff 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,13 +38,12 @@ jobs: force_orphan: true - name: 🐍 Build Python package run: make build-python - #- name: Publish package 📦 to Test PyPI - # uses: pypa/gh-action-pypi-publish@master - # if: startsWith(github.event.ref, 'refs/tags') - # with: - # user: __token__ - # password: ${{ secrets.test_pypi_password }} - # repository-url: https://test.pypi.org/legacy/ + - name: Publish package 📦 to Test PyPI + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.test_pypi_password }} + repository-url: https://test.pypi.org/legacy/ - name: Publish package 📦 to PyPI uses: pypa/gh-action-pypi-publish@release/v1 if: startsWith(github.event.ref, 'refs/tags')