From 4c7745b0b8475ca98a28c126898ec4f189c3fbd5 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sun, 21 Apr 2024 11:57:22 +0000 Subject: [PATCH] Remove git icon from /projects --- _includes/projects.html | 4 +-- _includes/projects_horizontal.html | 4 +-- _projects/calbuilder-github.md | 55 ++++++++++++++++++++++++++++++ 3 files changed, 59 insertions(+), 4 deletions(-) create mode 100644 _projects/calbuilder-github.md diff --git a/_includes/projects.html b/_includes/projects.html index 829dbfa..ebdb0eb 100644 --- a/_includes/projects.html +++ b/_includes/projects.html @@ -14,7 +14,7 @@

{{ project.title }}

{{ project.description }}

- {%- if project.github -%} +
diff --git a/_includes/projects_horizontal.html b/_includes/projects_horizontal.html index 214b9ae..c35709f 100644 --- a/_includes/projects_horizontal.html +++ b/_includes/projects_horizontal.html @@ -8,7 +8,7 @@

{{ project.title }}

{{ project.description }}

- {%- if project.github -%} +
diff --git a/_projects/calbuilder-github.md b/_projects/calbuilder-github.md new file mode 100644 index 0000000..c33a893 --- /dev/null +++ b/_projects/calbuilder-github.md @@ -0,0 +1,55 @@ +--- +layout: page +title: calbuilder-gh +description: GitHub action to build Arch Linux packages. +github: https://git.slc.ar/slococo/calbuilder-github +importance: 8 +category: personal +--- + +GitHub action to build a package, analyze it with `namcap`, and output the package file (signed or unsigned) and its `.SRCINFO`. + +This action supports PKGBUILDs that have AUR dependencies. + +## Inputs and outputs +### Inputs: +* `pkgDir`: relative path to the PKGBUILD directory. +* `gpgPublicKey`: GPG public key that will be used to sign packages. +* `gpgPrivateKey`: GPG private key. +* `gpgPassphrase`: GPG passphrase of `gpgPrivateKey`. + +It is recommended to store `gpgPrivateKey` and `gpgPassphrase` as secrets (see [Usage](#usage-)). + +None of these inputs are required. + +### 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: calbuilder + uses: santilococo/calbuilder@master + pkgDir: "libxft-bgra" + gpgPublicKey: "199980CE93F18E62" + gpgPrivateKey: "${{ secrets.GPG_PRIVATE_KEY }}" + gpgPassphrase: "${{ secrets.GPG_PASSPHRASE }}" + - uses: actions/upload-artifact@v2 + with: + path: | + ${{ steps.calbuilder.outputs.srcInfo }} + ${{ steps.calbuilder.outputs.pkgFile }} +``` + +## Note + +Also, if you're working with Woodpecker CI, consider using my Woodpecker plugin, offering similar functionality. Check it out [here](https://git.slc.ar/slococo/calbuilder-woodpecker).