Woodpecker plugin to build Arch Linux packages.
Go to file
Santiago Lo Coco 152f8e3a7e Fix hyperlink 2022-03-01 17:47:50 -03:00
Dockerfile Add Dockerfile 2022-02-27 10:39:17 -03:00
LICENSE.md Add LICENSE.md 2022-02-28 17:41:58 -03:00
README.md Fix hyperlink 2022-03-01 17:47:50 -03:00
action.yaml Update README.md and action.yaml 2022-03-01 12:55:43 -03:00
pkgbuild.sh Run shellcheck 2022-03-01 17:26:01 -03:00

README.md

calbuilder

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.

Table of contents

Inputs and outputs

Inputs:

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

It is recommended that you store the gpgPrivateKey and the 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: "${{ secrets.GPG_PRIVATE_KEY }}"
        gpgPassphrase: "${{ secrets.GPG_PASSPHRASE }}"
    - uses: actions/upload-artifact@v2
      with:
        path: |
          ${{ steps.calbuilder.outputs.srcInfo }}
          ${{ steps.calbuilder.outputs.pkgFile }}          

Contributing

PRs are welcome.

License

MIT