-
-
Notifications
You must be signed in to change notification settings - Fork 23
49 lines (43 loc) · 1.4 KB
/
push_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
name: Android Push Workflow
on:
push:
branches:
- develop
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'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
mangaworld:
uses: ./.github/workflows/mangaworld_build.yaml
if: github.event.inputs.build_mangaworld == 'true' || github.event_name == 'push'
secrets: inherit # pass all secrets
animeworld:
uses: ./.github/workflows/animeworld_build.yaml
if: github.event.inputs.build_animeworld == 'true' || github.event_name == 'push'
secrets: inherit # pass all secrets
animeworldtv:
uses: ./.github/workflows/animeworldtv_build.yaml
if: github.event.inputs.build_animeworldtv == 'true' || github.event_name == 'push'
secrets: inherit # pass all secrets
novelworld:
uses: ./.github/workflows/novelworld_build.yaml
if: github.event.inputs.build_novelworld == 'true' || github.event_name == 'push'
secrets: inherit # pass all secrets