GitHub action to build Arch Linux packages.
GitHub 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.
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 ofgpgPrivateKey
.
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
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- id: calbuilder
uses: santilococo/calbuilder@master
pkgDir: "libxft-bgra"
gpgPublicKey: "199980CE93F18E62"
gpgPrivateKey: "$"
gpgPassphrase: "$"
- uses: actions/upload-artifact@v2
with:
path: |
$
$
Note
Also, if you’re working with Woodpecker CI, consider using my Woodpecker plugin, offering similar functionality. Check it out here.