GitHub action to build Arch Linux packages.
Go to file
Santiago Lo Coco d5e63aab86 Add LICENSE.md 2022-02-28 17:41:58 -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 Add README.md 2022-02-27 18:22:45 -03:00
action.yaml Add action.yaml 2022-02-27 18:10:03 -03:00
pkgbuild.sh Run shellcheck 2022-02-27 20:41:01 -03:00

README.md

calbuilder

GitHub action to build PKGFILE, analyze it with namcap and output its .SRCINFO.

Inputs and outputs

Inputs:

  • pkgDir: PKGBUILD directory relative path.

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: makepkg
      uses: santilococo/calbuilder@master
    - uses: actions/upload-artifact@v2
      with:
        path: ${{ steps.makepkg.outputs.srcInfo }}
        path: ${{ steps.makepkg.outputs.pkgFile }}