diff --git a/.github/workflows/push_build_to_prod_pypi.yml b/.github/workflows/push_build_to_prod_pypi.yml index e547b6f1d..7091b7d87 100644 --- a/.github/workflows/push_build_to_prod_pypi.yml +++ b/.github/workflows/push_build_to_prod_pypi.yml @@ -2,6 +2,11 @@ name: Distribute build to PyPi Production on: workflow_dispatch: + inputs: + tag: + description: 'Tag to deploy' + required: true + type: string jobs: @@ -15,6 +20,7 @@ jobs: uses: actions/checkout@v4 with: fetch-tags: 'true' + ref: ${{ github.event.inputs.tag }} - name: Set up Python uses: actions/setup-python@v5 with: