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.force-version != '' && inputs.force-version || 'dev' }}, tests=${{ inputs.testsuite }}, ref=${{ inputs.git-ref }}, duckdb ref=${{ inputs.duckdb-git-ref }})
33on :
44 workflow_dispatch :
55 inputs :
1616 - none
1717 - fast
1818 - all
19- git_ref :
19+ git-ref :
2020 type : string
2121 description : Git ref of the DuckDB python package
2222 required : false
23- duckdb_git_ref :
23+ duckdb-git-ref :
2424 type : string
2525 description : Git ref of DuckDB
2626 required : true
2727 default : refs/heads/main
28- force_version :
28+ force-version :
2929 type : string
3030 description : Force version (vX.Y.Z-((rc|post)N))
3131 required : false
4040 description : Testsuite to run (none, fast, all)
4141 required : true
4242 default : all
43- git_ref :
43+ git-ref :
4444 type : string
4545 description : Git ref of the DuckDB python package
4646 required : false
47- duckdb_git_ref :
47+ duckdb-git-ref :
4848 type : string
4949 description : Git ref of DuckDB
5050 required : false
51- force_version :
51+ force-version :
5252 description : Force version (vX.Y.Z-((rc|post)N))
5353 required : false
5454 type : string
7070 - name : Checkout DuckDB Python
7171 uses : actions/checkout@v4
7272 with :
73- ref : ${{ inputs.git_ref }}
73+ ref : ${{ inputs.git-ref }}
7474 fetch-depth : 0
7575 submodules : true
7676
@@ -79,11 +79,11 @@ jobs:
7979 run : |
8080 cd external/duckdb
8181 git fetch origin
82- git checkout ${{ inputs.duckdb_git_ref }}
82+ 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.force-version != '' }}
86+ run : echo "OVERRIDE_GIT_DESCRIBE=${{ inputs.force-version }}" >> $GITHUB_ENV
8787
8888 - name : Install Astral UV
8989 uses : astral-sh/setup-uv@v6
@@ -153,7 +153,7 @@ jobs:
153153 - name : Checkout DuckDB Python
154154 uses : actions/checkout@v4
155155 with :
156- ref : ${{ inputs.git_ref }}
156+ ref : ${{ inputs.git-ref }}
157157 fetch-depth : 0
158158 submodules : true
159159
@@ -162,12 +162,12 @@ jobs:
162162 run : |
163163 cd external/duckdb
164164 git fetch origin
165- git checkout ${{ inputs.duckdb_git_ref }}
165+ git checkout ${{ inputs.duckdb-git-ref }}
166166
167167 # Make sure that OVERRIDE_GIT_DESCRIBE is propagated to cibuildwhel's env, also when it's running linux builds
168168 - name : Set OVERRIDE_GIT_DESCRIBE
169- if : ${{ inputs.force_version != '' }}
170- run : echo "CIBW_ENVIRONMENT=OVERRIDE_GIT_DESCRIBE=${{ inputs.force_version }}" >> $GITHUB_ENV
169+ if : ${{ inputs.force-version != '' }}
170+ run : echo "CIBW_ENVIRONMENT=OVERRIDE_GIT_DESCRIBE=${{ inputs.force-version }}" >> $GITHUB_ENV
171171
172172 # Install Astral UV, which will be used as build-frontend for cibuildwheel
173173 - uses : astral-sh/setup-uv@v6
0 commit comments