-
-
Notifications
You must be signed in to change notification settings - Fork 24
53 lines (48 loc) · 1.52 KB
/
build_check.yaml
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
name: Minimal Android CI Workflow
on:
#push:
# branches:
# - master
# - develop
# paths-ignore:
# - '.github/**'
pull_request:
types: [ assigned, opened, synchronize, reopened ]
branches:
- develop
- master
workflow_dispatch:
inputs:
build_animeworld:
description: 'Build AnimeWorld?'
required: true
default: 'true'
build_animeworldtv:
description: 'Build AnimeWorldTV?'
required: true
default: 'true'
build_mangaworld:
description: 'Build MangaWorld?'
required: true
default: 'true'
build_novelworld:
description: 'Build NovelWorld?'
required: true
default: 'true'
jobs:
mangaworld:
uses: ./.github/workflows/mangaworld_build.yaml
if: github.event.inputs.build_mangaworld == 'true' || github.event_name == 'pull_request'
secrets: inherit # pass all secrets
animeworld:
uses: ./.github/workflows/animeworld_build.yaml
if: github.event.inputs.build_animeworld == 'true' || github.event_name == 'pull_request'
secrets: inherit # pass all secrets
animeworldtv:
uses: ./.github/workflows/animeworldtv_build.yaml
if: github.event.inputs.build_animeworldtv == 'true' || github.event_name == 'pull_request'
secrets: inherit # pass all secrets
novelworld:
uses: ./.github/workflows/novelworld_build.yaml
if: github.event.inputs.build_novelworld == 'true' || github.event_name == 'pull_request'
secrets: inherit # pass all secrets