diff options
-rw-r--r-- | .github/workflows/pypi.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 296e64b..8794898 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -25,6 +25,7 @@ on: - main - v*.x pull_request: + branches: - master - main @@ -38,7 +39,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 with: - ref: ${{ github.event.inputs.tag || github.ref }} + ref: ${{ inputs.tag || github.ref }} - name: Set up Python 3.10 uses: actions/setup-python@v4 with: @@ -56,9 +57,9 @@ jobs: with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ - if: github.event.inputs.testpypi == true + if: inputs.testpypi || false - name: Publish distribution to PyPI uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.PYPI_API_TOKEN }} - if: github.event.inputs.pypi == true + if: inputs.pypi || false |