We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 313f5db commit 9edcc01Copy full SHA for 9edcc01
1 file changed
.github/workflows/nightly-pypi-build.yml
@@ -29,7 +29,7 @@ permissions:
29
30
jobs:
31
set-version:
32
- if: github.repository == 'apache/iceberg-python' # Only run for apache repo
+ if: github.repository == 'apache/iceberg-python' || github.event_name == 'workflow_dispatch'
33
runs-on: ubuntu-latest
34
outputs:
35
VERSION: ${{ steps.set-version.outputs.VERSION }}
@@ -66,6 +66,7 @@ jobs:
66
VERSION: ${{ needs.set-version.outputs.VERSION }}
67
testpypi-publish:
68
name: Publish to TestPypi
69
+ if: github.repository == 'apache/iceberg-python'
70
needs:
71
- nightly-build
72
0 commit comments