-
Notifications
You must be signed in to change notification settings - Fork 2
69 lines (61 loc) · 2.02 KB
/
precache-sources.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
63
64
65
66
67
68
name: precache sources
on:
workflow_call:
workflow_dispatch:
inputs:
target:
description: "targets to cache"
default: all
required: true
type: choice
options:
- all
- CoreELEC-20
- CoreELEC-21
- CoreELEC-22
- LibreELEC-11
- LibreELEC-12
- LibreELEC-13
jobs:
coreelec-20:
name: CoreELEC-20
if: ( github.event.inputs.target == 'CoreELEC-20' || github.event.inputs.target == 'all' || github.event.inputs.target == '' )
uses: ./.github/workflows/download-sources.yml
with:
config: CoreELEC-20
secrets: inherit
coreelec-21:
name: CoreELEC-21
if: ( github.event.inputs.target == 'CoreELEC-21' || github.event.inputs.target == 'all' || github.event.inputs.target == '' )
uses: ./.github/workflows/download-sources.yml
with:
config: CoreELEC-21
secrets: inherit
coreelec-22:
name: CoreELEC-22
if: ( github.event.inputs.target == 'CoreELEC-22' || github.event.inputs.target == 'all' || github.event.inputs.target == '' )
uses: ./.github/workflows/download-sources.yml
with:
config: CoreELEC-22
secrets: inherit
libreelec-11:
name: LibreELEC-11
if: ( github.event.inputs.target == 'LibreELEC-11' || github.event.inputs.target == 'all' || github.event.inputs.target == '' )
uses: ./.github/workflows/download-sources.yml
with:
config: LibreELEC-11
secrets: inherit
libreelec-12:
name: LibreELEC-12
if: ( github.event.inputs.target == 'LibreELEC-12' || github.event.inputs.target == 'all' || github.event.inputs.target == '' )
uses: ./.github/workflows/download-sources.yml
with:
config: LibreELEC-12
secrets: inherit
libreelec-13:
name: LibreELEC-13
if: ( github.event.inputs.target == 'LibreELEC-13' || github.event.inputs.target == 'all' || github.event.inputs.target == '' )
uses: ./.github/workflows/download-sources.yml
with:
config: LibreELEC-13
secrets: inherit