forked from lemniskett/android-kernel-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (35 loc) · 781 Bytes
/
action.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
name: Android Kernel Action
description: Build android kernel with GitHub Action
author: Syahrial Agni Prasetya <[email protected]>
branding:
icon: box
color: green
inputs:
arch:
description: Device architecture
required: true
compiler:
description: Compiler to use
required: true
defconfig:
description: Defconfig to use
required: true
image:
description: Kernel image name
required: true
dtbo:
description: Pagesize to build dtbo.img
required: false
default: 0
outputs:
outfile:
description: Zip file generated from build
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.arch }}
- ${{ inputs.compiler }}
- ${{ inputs.defconfig }}
- ${{ inputs.image }}
- ${{ inputs.dtbo }}