/pkgbuild-action

Make the package in a minimal environment and generate `.SRCINFO`.

Primary LanguageShellApache License 2.0Apache-2.0

PKGBUILD Action

Make the package in a minimal environment and generate .SRCINFO.

Inputs

path

The path to the directory containing the PKGBUILD.

Outputs

pkgfile

The path to the built package.

Get Started

      - name: Build Package
        uses: ouuan/pkgbuild-action@master
        id: build-package
        with:
          path: pkgname
      - name: Upload Artifacts
        uses: actions/upload-artifact@v2
        with:
          name: pkgname-${{ github.run_id }}
          path: ${{ steps.build-package.outputs.pkgfile }}