forked from edlanglois/pkgbuild-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
39 lines (39 loc) · 1.05 KB
/
action.yaml
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
name: Paru Build and Check
author: PingHigh
description: Build and check a PKGBUILD package with paru
branding:
color: blue
icon: package
inputs:
pkgdir:
description: "Relative path to directory containing the PKGBUILD file."
required: false
default: "."
namcapDisable:
description: "Disable namcap checks if nonempty."
required: false
default: ""
namcapRules:
description: "A comma-separated list of rules for namcap to run."
required: false
default: ""
namcapExcludeRules:
description: "A comma-separated list of rules for namcap not to run."
required: false
default: ""
makepkgArgs:
description: "Additional arguments to pass to makepkg."
required: false
default: ""
makepkgProfilePath:
description: "path of makepkg.conf"
required: false
default: ""
outputs:
pkgfile0:
description: "Filename of the first generated package archive. Usually only one."
pkgfile1:
description: "Filename of the 2nd generated package archive, etc."
runs:
using: 'docker'
image: 'Dockerfile'