generated from actions/container-action
-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
33 lines (33 loc) · 940 Bytes
/
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
name: Build Debian package
description: Build Debian package from source for selected target release
branding:
color: red
icon: package
inputs:
cpu_architecture:
description: Target CPU architecture (amd64, arm64, arm, ...)
required: false
default: amd64
source_directory:
description: Directory where Debian sources are, relative to workspace
required: false
default: ./
artifacts_directory:
description: Directory where build artifacts will be placed, relative to workspace
required: false
default: ./
os_distribution:
description: OS distribution name, value from `debian/changelog` is used if not defined
required: false
lintian_opts:
description: Command line parameters provided to 'lintian'
required: false
default: ""
lintian_run:
description: Run lintian checks
required: false
default: false
runs:
using: node16
main: main.js
post: post.js