Add README.md

This commit is contained in:
Santiago Lo Coco 2022-02-27 18:22:45 -03:00
parent d3fdf1466f
commit bce60a9ecf
1 changed files with 29 additions and 0 deletions

29
README.md Normal file
View File

@ -0,0 +1,29 @@
# 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
```yaml
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 }}
```