Skip to content

Commit

Permalink
Create y.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik authored Dec 30, 2023
1 parent 439336f commit 4234963
Showing 1 changed file with 129 additions and 0 deletions.
129 changes: 129 additions & 0 deletions .github/workflows/y.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
name: Generated
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
default: 'current'

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

armbian_ui:
type: choice
description: 'User interface (not all combinations work)'
options:
- minimal
- server
- xfce
- gnome
- cinnamon
- i3-wm
- kde-plasma
default: 'minimal'

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

armbian_board:
type: choice
description: 'Board'
options:
- bananapicm4io
- bananapim2pro
- bananapim2s
- bananapim5
- bigtreetech-cb1
- jethubj100
- jethubj80
- khadas-edge2
- khadas-vim1
- khadas-vim1s
- khadas-vim2
- khadas-vim3
- khadas-vim3l
- khadas-vim4
- lafrite
- lepotato
- nanopi-r4s
- nanopi-r6s
- nanopiduo
- nanopiduo2
- odroidc2
- odroidm1
- odroidn2
- odroidxu4
- olimex-teres-a64
- onecloud
- orangepi-r1
- orangepi-r1plus-lts
- orangepi4-lts
- orangepi5-plus
- orangepi5
- orangepione
- orangepiprime
- orangepizero
- orangepizero2
- orangepizeroplus
- pine64
- pinebook-pro
- radxa-zero
- renegade
- rock-3a
- rock-5b
- rockpi-4a
- rockpi-e
- rockpro64
- rpi4b
- rpi5b
- sk-am62b
- sk-am64b
- sk-tda4vm
- tinkerboard
- tritium-h3
- tritium-h5
- uefi-arm64
- uefi-x86
- xiaomi-elish
jobs:

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

- uses: armbian/build@AR-1459
with:
armbian_token: "\***"
armbian_target: "\"
armbian_release: "\"
armbian_kernel_branch: "\"
armbian_ui: "\"
armbian_board: "\"
armbian_release_tittle: "Armbian SDK"
armbian_release_body: "Virtual images for x86 and arm64"
armbian_pgp_key: "\"
armbian_pgp_password: "\"

0 comments on commit 4234963

Please sign in to comment.