Skip to content

Commit a31b424

Browse files
committed
Add temporary beta pipeline workflow
1 parent ec07815 commit a31b424

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Beta Pipeline
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: 'Version to build'
8+
required: false
9+
type: string
10+
notify_testers:
11+
description: 'Notify external testers'
12+
required: false
13+
default: true
14+
type: boolean
15+
16+
jobs:
17+
call-shippable-builds:
18+
uses: coreycb/thunderbird-ios/.github/workflows/shippable-builds.yml@beta
19+
with:
20+
version: ${{ github.event.inputs.version }}
21+
notify_testers: ${{ github.event.inputs.notify_testers }}

0 commit comments

Comments
 (0)