Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
Create build_new.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
efectn authored Apr 12, 2024
1 parent e3ed8d2 commit babdbdc
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/build_new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: "Build Image"
on:
workflow_dispatch:
inputs:

armbian_target:
type: choice
description: 'Build'
required: false
options:
- kernel
- build
default: build

armbian_kernel_branch:
type: choice
description: 'Kernel branch'
options:
- legacy
- current
- edge
- vendor
default: 'current'

armbian_release:
type: choice
description: 'Userspace'
options:
- jammy
- bookworm
- sid
- noble
default: 'jammy'

armbian_ui:
type: choice
description: 'User interface (not all works)'
options:
- minimal
- server
- xfce
- gnome
- kde-neon
- kde-plasma
default: 'minimal'

armbian_version:
description: 'Version'
required: false
default: ''

armbian_board:
type: choice
description: 'Board'
options:
- orangepi5
- orangepi5-plus
- khadas-edge2
- nanopi-r6s
- rpi4b

jobs:

build:
name: "Build Armbian"
runs-on: ubuntu-latest
steps:

- uses: armbian/[email protected]
with:
armbian_token: "${{secrets.GITHUB_TOKEN}}"
armbian_target: "${{inputs.armbian_target}}"
armbian_release: "${{inputs.armbian_release}}"
armbian_kernel_branch: "${{inputs.armbian_kernel_branch}}"
armbian_ui: "${{inputs.armbian_ui}}"
armbian_board: "${{inputs.armbian_board}}"
armbian_release_tittle: "Armbian Test Images"
armbian_release_body: "Test images for x86 and arm64"

0 comments on commit babdbdc

Please sign in to comment.