Skip to content

build armbian

build armbian #17

Workflow file for this run

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: 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"