Unverified Commit 83879ebe authored by Bolea Sanchez, Vicente Adolfo's avatar Bolea Sanchez, Vicente Adolfo Committed by GitHub
Browse files

Merge pull request #3967 from scottwittenburg/fix-upload-pypi-job-condition

pip: also run pypi upload job on workflow_dispatch
parents d6507429 29425216
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -70,7 +70,12 @@ jobs:
    permissions:
      id-token: write
    runs-on: ubuntu-latest
    if: github.event_name == 'release' && github.event.action == 'published'
    if: |
      github.event_name == 'workflow_dispatch' ||
      (
        github.event_name == 'release' &&
        github.event.action == 'published'
      )
    steps:
      - uses: actions/download-artifact@v3
        with: