forked from jayofelony/pwnagotchi
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (40 loc) · 1023 Bytes
/
build-armbian.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
name: "build armbian"
on:
workflow_dispatch:
inputs:
armbian_kernel_branch:
type: choice
description: 'Kernel branch'
options:
- legacy
- current
- edge
default: 'current'
armbian_ui:
type: choice
description: 'User interface (not all works)'
options:
- minimal
- server
- xfce
- gnome
- cinnamon
- i3-wm
- kde-plasma
default: 'server'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: publish/build
- uses: armbian/[email protected]
with:
armbian_token: "${{ secrets.REPO_KEY }}"
armbian_target: "build"
armbian_release: "bookworm"
armbian_kernel_branch: "${{inputs.armbian_kernel_branch}}"
armbian_ui: "${{inputs.armbian_ui}}"
armbian_board: "bananapim4zero"
armbian_version: "v24.11.0-trunk.303"