Woodpecker plugin to build Arch Linux packages.
Go to file
Santiago Lo Coco 5036415ac8 Update 'set' options 2023-10-07 16:08:34 -03:00
Dockerfile Use archlinux:base-devel docker image 2022-03-11 15:10:18 -03:00
LICENSE.md Add LICENSE.md 2022-02-28 17:41:58 -03:00
README.md Update pkgbuild.sh and README.md 2023-10-07 15:55:03 -03:00
action.yaml Update calbuilder 2023-10-07 09:05:07 -03:00
pkgbuild.sh Update 'set' options 2023-10-07 16:08:34 -03:00

README.md

calbuilder-woodpecker

Woodpecker action to build a package, analyze it with namcap, and output the package file (signed or unsigned) and its .SRCINFO.

This action supports PKGBUILDs that have AUR dependencies.

Table of contents

Inputs and outputs

Inputs:

  • pkgDir: relative path to the PKGBUILD directory.
  • gpgPublicKey: GPG public key that will be used to sign packages.
  • gpgPrivateKey: GPG private key.
  • gpgPassphrase: GPG passphrase of gpgPrivateKey.

It is recommended to store gpgPrivateKey and gpgPassphrase as secrets (see Usage).

None of these inputs are required.

Outputs:

  • srcInfo: Generated .SRCINFO.
  • pkgFile: Built package file.

Usage

steps:
  webhook:
    image: slococo/calbuilder
    settings:
      pkgDir: "libxft-bgra"
      gpgPublicKey: "199980CE93F18E62"
      gpgPrivateKey:
	from_secret: GPG_PRIVATE_KEY
      gpgPassphrase:
	from_secret: GPG_PASSPHRASE

Contributing

PRs are welcome.

License

MIT