Skip to content

build armbian

build armbian #11

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'
armbian_version:
description: 'Version'
required: false
default: '24.11.0-trunk.293' ## current lasttt with proper pbim4z wlan fixes
jobs:
build-armbian:
runs-on: ubuntu-latest
steps:
- uses: armbian/[email protected]
with:
armbian_target: "build"
armbian_kernel_branch: "${{inputs.armbian_kernel_branch}}"
armbian_release: "bookworm"
armbian_ui: "${{inputs.armbian_ui}}"
armbian_version: "${{inputs.armbian_version}}"
armbian_board: "bananapim4zero"
armbian_token: "${{ secrets.REPO_KEY }}"