-
-
Notifications
You must be signed in to change notification settings - Fork 2
62 lines (58 loc) · 1.57 KB
/
release.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: 'release'
on:
workflow_dispatch:
inputs:
release_type:
type: choice
default: patch
description: What kind of version upgrade
options:
- none
- code
- patch
- minor
- major
ios:
description: 'iOS'
required: true
default: true
type: boolean
android:
description: 'Android'
required: true
default: true
type: boolean
publish:
description: "Should we publish?"
required: true
type: boolean
default: true
github:
description: "Should we publish on Github?"
default: true
required: true
type: boolean
sentry:
description: "Should we use sentry?"
default: true
required: true
type: boolean
jobs:
release-android:
uses: Akylas/app-tools/.github/workflows/release_android.yml@main
if: github.event.inputs.android == 'true'
with:
release_type: ${{ github.event.inputs.release_type }}
publish: ${{ github.event.inputs.publish }}
github: ${{ github.event.inputs.github }}
sentry: ${{ github.event.inputs.sentry }}
secrets: inherit
release-ios:
uses: Akylas/app-tools/.github/workflows/release_ios.yml@main
if: github.event.inputs.ios == 'true'
with:
release_type: ${{ github.event.inputs.release_type }}
publish: ${{ github.event.inputs.publish }}
github: ${{ github.event.inputs.github }}
sentry: ${{ github.event.inputs.sentry }}
secrets: inherit