Skip to content

Commit d83f627

Browse files
author
Evert
committed
Add workflow for external dispatch
1 parent 251d8f1 commit d83f627

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
type: string
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

Comments
 (0)