-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (30 loc) · 1021 Bytes
/
demo_build_template.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
# Demo workflow to show how to create a workflow to configure a build with specific options.
# This workflow can be used to easily repeat a build without the need to configure the build everytimg.
#
# The workflow contains the following configuration
# target: "all default"
# Build all default targets
# defaulttarget: "LibreELEC-13-x86_64-x11 LibreELEC-13-aarch64-AMLGX"
# Set the default target to LibreELEC-13-x86_64-x11 and LibreELEC-13-aarch64-AMLGX
# addons: ""
# Don't build any addons
# extras: ""
# Don't compile any extras
# extraparameter: ""
# call build.sh without any extra parameter
#
# For all possible options see
# https://github.com/Zabrimus/VDRSternELEC#building-the-image
name: Build VDRSternELEC Template
on:
workflow_dispatch:
jobs:
build:
uses: ./.github/workflows/build.yml
with:
target: "all default"
defaulttarget: "LibreELEC-13-x86_64-x11 LibreELEC-13-aarch64-AMLGX"
addons: "-"
extras: "-"
extraparameter: "-"
secrets: inherit