From dbb103829ff349bc50da2e943fedb48e014d29ce Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Thu, 14 Jul 2022 12:21:18 +0200 Subject: Fix deploy workflow --- .github/workflows/pypi.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 296e64b..c097db6 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -38,7 +38,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 +56,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 -- cgit v1.2.1