-
-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (41 loc) · 1.87 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: "Build Armbian"
on:
workflow_dispatch:
# manual trigger
schedule:
# runs every day at 3am UTC
- cron: '0 3 * * *'
jobs:
Keep:
name: "Keep alive"
runs-on: ubuntu-latest
steps:
# checkout this repository
- uses: actions/checkout@v4
# prevent GitHub from suspending cronjob
- uses: gautamkrishnar/keepalive-workflow@v1
Matrix:
needs: Keep
strategy:
fail-fast: false
matrix:
board: [uefi-x86,uefi-arm64]
os: ["jammy"]
extension: [",image-output-qcow2",""]
name: "${{ matrix.os }},${{ matrix.board }}${{ matrix.extension }}"
runs-on: ubuntu-latest
steps:
- uses: igorpecovnik/build@main # #uses: armbian/build@AR-1459
with:
armbian_token: "${{ secrets.GITHUB_TOKEN }}" # GitHub installation access token
armbian_target: "armbian-images" # build configuration from userpatches
armbian_kernel_branch: "current" # branch: legacy, current, edge, etc.
armbian_branch: "main" # build framework branch
armbian_release: "${{ matrix.os }}" # userspace: jammy, bookworm, trixie, etc.
armbian_board: "${{ matrix.board }}" # board build target
armbian_ui: "minimal" # minimal, server, xfce, gnome, etc.
armbian_extensions: "docker-ce,sdk${{ matrix.extension }}" # enable extensions
armbian_release_tittle: "Armbian SDK"
armbian_release_body: "Virtual images for x86 and arm64"
armbian_pgp_key: "${{ secrets.GPG_KEY1 }}"
armbian_pgp_password: "${{ secrets.GPG_PASSPHRASE1 }}"