Init: bootstrap package
All checks were successful
Build package / build-package (push) Successful in 15s

This commit is contained in:
2025-07-31 07:38:06 +08:00
commit a814f5d402
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
name: Build package
on: [push]
jobs:
build-package:
runs-on: pkgbuilder
env:
steps:
- name: Build and push package
uses: https://gitea.konchin.com/action/archbuild@main
with:
minio-accesskey: ${{ secrets.MINIO_ACCESSKEY }}
minio-secretkey: ${{ secrets.MINIO_SECRETKEY }}
gpg-password: ${{ secrets.GPG_PASSWORD }}
gpg-keygrip: ${{ secrets.GPG_KEYGRIP }}

18
PKGBUILD Normal file
View File

@@ -0,0 +1,18 @@
# Maintainer: Yi-Ting Shih <ytshih@konchin.com>
pkgname=longhornctl
pkgver=1.9.0
pkgrel=1
pkgdesc="CLI tool for managing Longhorn"
arch=('x86_64')
url="https://gitea.konchin.com/package/longhornctl"
license=('0BSD')
source=(
'longhornctl::https://github.com/longhorn/cli/releases/download/v1.9.0/longhornctl-linux-amd64'
)
package() {
cd "$srcdir"
install -Dm755 longhornctl "$pkgdir/usr/bin/longhornctl"
}
sha256sums=('336f1ee8ac7cdd50382f1cc3131aa5c9fc5554a81de1ee65ba951534bc390272')