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 d83f627Copy full SHA for d83f627
.github/workflows/on_external_dispatch.yml
@@ -0,0 +1,23 @@
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
+
14
+jobs:
15
+ externally_triggered_build:
16
+ name: Build and test releases
17
+ uses: ./.github/workflows/pypi_packaging.yml
18
+ with:
19
+ minimal: false
20
+ testsuite: all
21
+ git_ref: ${{ github.ref }}
22
+ duckdb_git_ref: ${{ inputs.duckdb-sha }}
23
+ force_version: ${{ inputs.force_version }}
0 commit comments