Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 753 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 753 Bytes

PKGBUILD Action

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

Inputs

path

The path to the directory containing the PKGBUILD.

archive

Use Arch Linux Archive on the specified date instead of using the latest repo.

Example value: 2023/03/20

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@v4
        with:
          name: pkgname-${{ github.run_id }}
          path: ${{ steps.build-package.outputs.pkgfile }}