From e6a2e01d9d108804f3fd72629a9d57b7ace8c52e Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Thu, 2 Apr 2026 02:58:34 +0200 Subject: [PATCH] Fix apk-publish: add build-base dep, net option, and apk update --- .gitea/workflows/apk-publish.yml | 3 +++ packaging/alpine/APKBUILD | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/apk-publish.yml b/.gitea/workflows/apk-publish.yml index c50cd5b..02e5ffb 100644 --- a/.gitea/workflows/apk-publish.yml +++ b/.gitea/workflows/apk-publish.yml @@ -49,6 +49,9 @@ jobs: sed -i "s|source=.*|source=\"\$pkgname-\$pkgver.tar.gz\"|" packaging/alpine/APKBUILD chown -R build:abuild . + - name: Update apk index + run: apk update + - name: Generate checksums run: | cd packaging/alpine diff --git a/packaging/alpine/APKBUILD b/packaging/alpine/APKBUILD index fca95fc..8273d03 100644 --- a/packaging/alpine/APKBUILD +++ b/packaging/alpine/APKBUILD @@ -6,8 +6,9 @@ pkgdesc="CLI-native issue tracker using SQLite" url="https://g.eliaskohout.de/eliaskohout/axolotl" arch="x86_64 aarch64" license="MIT" +options="net" depends="" -makedepends="go" +makedepends="go build-base" source="$pkgname-$pkgver.tar.gz::https://g.eliaskohout.de/eliaskohout/axolotl/archive/$pkgver.tar.gz" export GOTOOLCHAIN=auto