Skip to content

Commit 7f78770

Browse files
committed
Allow manual runs of build workflows
1 parent b9c97a0 commit 7f78770

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

.github/workflows/build-macos.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
# the github release drafter can call this workflow
1313
workflow_call:
1414

15+
# users can call this worfklow
16+
workflow_dispatch:
17+
1518
concurrency:
1619
group: ${{ github.workflow }}-${{ github.ref }}-macos
1720
cancel-in-progress: true

.github/workflows/build-manylinux.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
# the github release drafter can call this workflow
1313
workflow_call:
1414

15+
# users can call this worfklow
16+
workflow_dispatch:
17+
1518
concurrency:
1619
group: ${{ github.workflow }}-${{ github.ref }}-manylinux
1720
cancel-in-progress: true

.github/workflows/build-sdl3.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ on:
3232
# the github release drafter can call this workflow
3333
workflow_call:
3434

35+
# users can call this worfklow
36+
workflow_dispatch:
37+
3538
concurrency:
3639
group: ${{ github.workflow }}-${{ github.ref }}-ubuntu-sdist
3740
cancel-in-progress: true

.github/workflows/build-ubuntu-sdist.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ on:
1919
# the github release drafter can call this workflow
2020
workflow_call:
2121

22+
# users can call this worfklow
23+
workflow_dispatch:
24+
2225
concurrency:
2326
group: ${{ github.workflow }}-${{ github.ref }}-ubuntu-sdist
2427
cancel-in-progress: true

.github/workflows/build-windows.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ on:
1212
# the github release drafter can call this workflow
1313
workflow_call:
1414

15+
# users can call this worfklow
16+
workflow_dispatch:
17+
1518
concurrency:
1619
group: ${{ github.workflow }}-${{ github.ref }}-windows
1720
cancel-in-progress: true

0 commit comments

Comments
 (0)