diff --git a/README.md b/README.md new file mode 100644 index 0000000..e264967 --- /dev/null +++ b/README.md @@ -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 }} +```