name: Build and publish bandcamp-downloader to TestPyPI on: push: branches: - master jobs: build-and-publish: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Set up Python 3.10 uses: actions/setup-python@v2 with: python-version: "3.10" - name: Install dependencies run: python -m pip install -U setuptools wheel build - name: Build a binary wheel and a source tarball run: python -m build . - name: Publish distribution to TestPyPI uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ #- name: Publish distribution to PyPI # if: startsWith(github.ref, 'refs/tags') # uses: pypa/gh-action-pypi-publish@master # with: # password: ${{ secrets.PYPI_API_TOKEN }}