Update action.yaml
This commit is contained in:
parent
3814baa026
commit
90f853f2e8
15
action.yaml
15
action.yaml
|
@ -1,6 +1,6 @@
|
||||||
name: Calbuilder
|
name: Calbuilder
|
||||||
author: Santiago Lo Coco
|
author: Santiago Lo Coco
|
||||||
description: Makepkg build, namcap check and generate .SRCINFO
|
description: Makepkg, analyze it with namcap, and output the package file and its .SRCINFO
|
||||||
branding:
|
branding:
|
||||||
color: green
|
color: green
|
||||||
icon: zap
|
icon: zap
|
||||||
|
@ -9,6 +9,19 @@ inputs:
|
||||||
description: "PKGBUILD directory relative path."
|
description: "PKGBUILD directory relative path."
|
||||||
required: false
|
required: false
|
||||||
default: "."
|
default: "."
|
||||||
|
gpgPublicKey:
|
||||||
|
description: "GPG public key that will be used to sign packages."
|
||||||
|
required: false
|
||||||
|
default: ""
|
||||||
|
gpgPrivateKey:
|
||||||
|
description: "GPG private key."
|
||||||
|
required: false
|
||||||
|
default: ""
|
||||||
|
gpgPassphrase:
|
||||||
|
description: "The GPG passphrase for the gpgPrivateKey."
|
||||||
|
required: false
|
||||||
|
default: ""
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
srcInfo:
|
srcInfo:
|
||||||
description: "Generated .SRCINFO"
|
description: "Generated .SRCINFO"
|
||||||
|
|
Loading…
Reference in New Issue