-
-
Notifications
You must be signed in to change notification settings - Fork 18
48 lines (41 loc) · 1.06 KB
/
debian.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
47
48
name: Debian package
#
# Description
#
on:
workflow_dispatch:
push:
branches:
- main
jobs:
Armbian:
runs-on: ubuntu-latest
steps:
- name: Set Variable
run: echo "LOGO=armbian-config" >> $GITHUB_ENV
Debian:
needs: "Armbian"
uses: armbian/scripts/.github/workflows/pack-debian.yml@main
with:
matrix: "all:jammy"
maintainer: "Igor Pecovnik <[email protected]>"
package: "${{ env.LOGO }}"
licence: "GPL 2.0"
homepage: "https://www.armbian.com"
section: "default"
priority: "optional"
depends: "bash, jq, whiptail, sudo, procps, systemd, lsb-release, iproute2"
description: "Configng"
secrets:
GPG_PRIVATE_KEY: ${{ secrets.GPG_KEY1 }}
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE1 }}
Tests:
name: "Execute unit tests"
if: ${{ github.repository_owner == 'Armbian' }}
needs: Debian
runs-on: ubuntu-latest
steps:
- name: "Run unit tests action"
uses: peter-evans/repository-dispatch@v3
with:
event-type: "Unit tests"