Compare commits

..

10 Commits

Author SHA1 Message Date
Yi-Ting Shih
67b34ffd71 Feat: add build ci
All checks were successful
Build package / build-package (push) Successful in 31s
2026-03-12 19:27:58 +08:00
GitHub Action
1b96d293fa [CI] Updated to 5.8.3 2025-02-15 19:39:28 +00:00
GitHub Action
476a7ae328 [CI] Updated to 5.8.2 2025-02-12 12:01:09 +00:00
GitHub Action
f4915d0887 [CI] Updated to 5.8.1 2025-01-20 11:43:44 +00:00
GitHub Action
07d5dea218 [CI] Updated to 5.7.5 2024-11-26 17:08:19 +00:00
GitHub Action
4fd9bdf9a3 [CI] Updated to 5.7.4 2024-10-08 06:38:02 +00:00
GitHub Action
ee87878009 [CI] Updated to 5.7.3 2024-08-20 15:14:27 +00:00
GitHub Action
6af5decb2e [CI] Updated to 5.7.2 2024-07-15 09:22:00 +00:00
GitHub Action
a8a7ff2c46 [CI] Updated to 5.7.1 2024-07-11 05:08:18 +00:00
GitHub Action
8c236a3f0d [CI] Updated to 5.7.0 2024-07-05 05:22:46 +00:00
3 changed files with 22 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
pkgbase = rancher-k3d-bin pkgbase = rancher-k3d-bin
pkgdesc = Little helper to run Rancher Labs k3s in Docker pkgdesc = Little helper to run Rancher Labs k3s in Docker
pkgver = 5.6.3 pkgver = 5.8.3
pkgrel = 1 pkgrel = 1
url = https://github.com/rancher/k3d url = https://github.com/rancher/k3d
arch = x86_64 arch = x86_64
@@ -11,7 +11,7 @@ pkgbase = rancher-k3d-bin
license = MIT license = MIT
provides = k3d provides = k3d
conflicts = rancher-k3d-beta-bin conflicts = rancher-k3d-beta-bin
source = rancher-k3d-bin-5.6.3-amd64::https://github.com/rancher/k3d/releases/download/v5.6.3/k3d-linux-amd64 source = rancher-k3d-bin-5.8.3-amd64::https://github.com/rancher/k3d/releases/download/v5.8.3/k3d-linux-amd64
sha256sums = 69f434b5a326eddafff6062a1b439d1c7a78a1ee93a91a9f79872cf8e516327d sha256sums = dbaa79a76ace7f4ca230a1ff41dc7d8a5036a8ad0309e9c54f9bf3836dbe853e
pkgname = rancher-k3d-bin pkgname = rancher-k3d-bin

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 }}

View File

@@ -1,6 +1,6 @@
# Maintainer: Jonas Dellinger <jonas@dellinger.dev> # Maintainer: Jonas Dellinger <jonas@dellinger.dev>
pkgname="rancher-k3d-bin" pkgname="rancher-k3d-bin"
pkgver=5.6.3 pkgver=5.8.3
pkgrel=1 pkgrel=1
pkgdesc='Little helper to run Rancher Labs k3s in Docker' pkgdesc='Little helper to run Rancher Labs k3s in Docker'
arch=('x86_64' 'aarch64' 'arm' 'armv6h' 'armv7h') arch=('x86_64' 'aarch64' 'arm' 'armv6h' 'armv7h')
@@ -10,9 +10,9 @@ provides=("k3d")
conflicts=("rancher-k3d-beta-bin") conflicts=("rancher-k3d-beta-bin")
case "${CARCH}" in case "${CARCH}" in
x86_64) _CARCH=amd64 && sha256sums=('69f434b5a326eddafff6062a1b439d1c7a78a1ee93a91a9f79872cf8e516327d');; x86_64) _CARCH=amd64 && sha256sums=('dbaa79a76ace7f4ca230a1ff41dc7d8a5036a8ad0309e9c54f9bf3836dbe853e');;
aarch64) _CARCH=arm64 && sha256sums=('5d2e556e26681474a4aa09b40e2e9880084e0caf63a049b045cb22cc3188de68');; aarch64) _CARCH=arm64 && sha256sums=('0b8110f2229631af7402fb828259330985918b08fefd38b7f1b788a1c8687216');;
arm*) _CARCH=arm && sha256sums=('4133b1beaca09a07e4ffd42a45a3e314465ea27d1ca3cbc4eb15ea2785b79fa7');; arm*) _CARCH=arm && sha256sums=('c4ef4e8008edb55cf347d846a7fc70af319883f9a474167689bd8af04693401d');;
esac esac
source=("${pkgname}-${pkgver}-${_CARCH}::https://github.com/rancher/k3d/releases/download/v$pkgver/k3d-linux-${_CARCH}") source=("${pkgname}-${pkgver}-${_CARCH}::https://github.com/rancher/k3d/releases/download/v$pkgver/k3d-linux-${_CARCH}")