action-debian-package/action.yml
2020-10-28 18:59:05 -03:00

31 lines
989 B
YAML

name: Build Debian package
description: Build Debian package from source for selected target release
branding:
color: red
icon: package
inputs:
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: "./"
target_architectures:
description: Target architecture of Debian package to build
required: false
default: ""
dpkg_buildpackage_opts:
description: Options list provided to 'dpkg-buildpackage' as command line parameters (note that '-a' is automatically provided for target architectures specified by target_architectures)
required: false
default: "--no-sign, -d"
lintian_opts:
description: Options list provided to 'lintian' as command line parameters
required: false
default: ""
runs:
using: node12
main: main.js