-
Notifications
You must be signed in to change notification settings - Fork 12
43 lines (40 loc) · 923 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build
on:
workflow_call:
inputs:
channel:
type: string
description: Channel to build
required: true
default: 'dev'
workflow_dispatch:
inputs:
channel:
type: choice
description: Select channel to build
required: true
options:
- dev
- stage
- rc
custom-commit:
type: string
description: Custom commit
required: false
dry-run:
type: choice
description: Dry run
required: false
options:
- false
- true
run-name: Build ${{ inputs.channel }}
jobs:
build:
uses: holepunchto/actions/.github/workflows/keet-automation.yml@v1
secrets: inherit
with:
job: pear-platform
channel: ${{ inputs.channel }}
commit: ${{ inputs.custom-commit || github.sha }}
dry-run: ${{ inputs.dry-run }}