We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 251d8f1 commit 70b551fCopy full SHA for 70b551f
.github/workflows/on_external_dispatch.yml
@@ -0,0 +1,28 @@
1
+name: Builds triggered externally by DuckDB
2
+on:
3
+ workflow_dispatch:
4
+ inputs:
5
+ duckdb-sha:
6
+ type: string
7
+ description: The DuckDB SHA to build against
8
+ required: true
9
+ force_version:
10
11
+ description: Force version (vX.Y.Z-((rc|post)N))
12
+ required: false
13
+ publish_to_pypi:
14
+ type: boolean
15
+ description: Publish packages to PyPI?
16
17
+ default: false
18
+
19
+jobs:
20
+ externally_triggered_build:
21
+ name: Build and test releases
22
+ uses: ./.github/workflows/pypi_packaging.yml
23
+ with:
24
+ minimal: false
25
+ testsuite: all
26
+ git_ref: ${{ github.ref }}
27
+ duckdb_git_ref: ${{ inputs.duckdb-sha }}
28
+ force_version: ${{ inputs.force_version }}
0 commit comments