11name : Packaging
2- run-name : Build ${{ inputs.minimal && 'minimal set of' || 'all' }} packages (version=${{ inputs.force -version != '' && inputs.force -version || 'dev' }}, tests=${{ inputs.testsuite }}, ref=${{ inputs.git-ref }}, duckdb ref=${{ inputs.duckdb-git-ref }})
2+ run-name : Build ${{ inputs.minimal && 'minimal set of' || 'all' }} packages (version=${{ inputs.set -version != '' && inputs.set -version || 'dev' }}, tests=${{ inputs.testsuite }}, ref=${{ inputs.git-ref }}, duckdb ref=${{ inputs.duckdb-git-ref }})
33on :
44 workflow_dispatch :
55 inputs :
2525 description : Git ref of DuckDB
2626 required : true
2727 default : refs/heads/main
28- force -version :
28+ set -version :
2929 type : string
3030 description : Force version (vX.Y.Z-((rc|post)N))
3131 required : false
4848 type : string
4949 description : Git ref of DuckDB
5050 required : false
51- force -version :
51+ set -version :
5252 description : Force version (vX.Y.Z-((rc|post)N))
5353 required : false
5454 type : string
8282 git checkout ${{ inputs.duckdb-git-ref }}
8383
8484 - name : Set OVERRIDE_GIT_DESCRIBE
85- if : ${{ inputs.force -version != '' }}
86- run : echo "OVERRIDE_GIT_DESCRIBE=${{ inputs.force -version }}" >> $GITHUB_ENV
85+ if : ${{ inputs.set -version != '' }}
86+ run : echo "OVERRIDE_GIT_DESCRIBE=${{ inputs.set -version }}" >> $GITHUB_ENV
8787
8888 - name : Install Astral UV
8989 uses : astral-sh/setup-uv@v6
@@ -149,7 +149,6 @@ jobs:
149149 uv run -v pytest ${{ inputs.testsuite == 'fast' && './tests/fast' || './tests' }} --verbose --ignore=./tests/stubs
150150
151151 steps :
152-
153152 - name : Checkout DuckDB Python
154153 uses : actions/checkout@v4
155154 with :
@@ -166,8 +165,8 @@ jobs:
166165
167166 # Make sure that OVERRIDE_GIT_DESCRIBE is propagated to cibuildwhel's env, also when it's running linux builds
168167 - name : Set OVERRIDE_GIT_DESCRIBE
169- if : ${{ inputs.force -version != '' }}
170- run : echo "CIBW_ENVIRONMENT=OVERRIDE_GIT_DESCRIBE=${{ inputs.force -version }}" >> $GITHUB_ENV
168+ if : ${{ inputs.set -version != '' }}
169+ run : echo "CIBW_ENVIRONMENT=OVERRIDE_GIT_DESCRIBE=${{ inputs.set -version }}" >> $GITHUB_ENV
171170
172171 # Install Astral UV, which will be used as build-frontend for cibuildwheel
173172 - uses : astral-sh/setup-uv@v6
0 commit comments