forked from jayofelony/pwnagotchi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yurii Smetanka
committed
Oct 21, 2024
1 parent
8616002
commit 240e2cc
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters