forked from lemniskett/android-kernel-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
30 lines (30 loc) · 669 Bytes
/
action.yml
File metadata and controls
30 lines (30 loc) · 669 Bytes
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
name: Android Kernel Action
description: Build android kernel with GitHub Action
author: Syahrial Agni Prasetya <lemniskett@protonmail.com>
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
outputs:
outfile:
description: Zip file generated from build
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.arch }}
- ${{ inputs.compiler }}
- ${{ inputs.defconfig }}
- ${{ inputs.image }}