Add Alpine APK packaging and update CI for versioned releases
Some checks failed
Build and Publish APK Package / build-apk (push) Failing after 18s
Build and Push Docker Container / build-and-push (push) Successful in 1m48s

This commit is contained in:
2026-04-02 02:41:47 +02:00
parent 64d4a9fe90
commit cac3221bbf
3 changed files with 89 additions and 4 deletions

26
packaging/alpine/APKBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Elias Kohout <elias@kohout.eu>
pkgname=axolotl
pkgver=0.1.0
pkgrel=0
pkgdesc="CLI-native issue tracker using SQLite"
url="https://g.eliaskohout.de/eliaskohout/axolotl"
arch="x86_64 aarch64"
license="MIT"
depends=""
makedepends="go"
source="$pkgname-$pkgver.tar.gz::https://g.eliaskohout.de/eliaskohout/axolotl/archive/$pkgver.tar.gz"
export GOTOOLCHAIN=auto
build() {
cd "$srcdir/src"
go build -ldflags="-s -w" -trimpath -o "$pkgname" .
}
package() {
install -Dm755 "$srcdir/src/$pkgname" "$pkgdir/usr/bin/$pkgname"
ln -s "$pkgname" "$pkgdir/usr/bin/ax"
}
sha512sums=""