From 81c63ad05f9f7c16720627a072c634bfda915399 Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Thu, 2 Apr 2026 03:20:03 +0200 Subject: [PATCH] fix: run apk update and pre-install build-base before abuild Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/apk-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/apk-publish.yml b/.gitea/workflows/apk-publish.yml index dc5072b..3d118a6 100644 --- a/.gitea/workflows/apk-publish.yml +++ b/.gitea/workflows/apk-publish.yml @@ -13,7 +13,8 @@ jobs: steps: - name: Install build dependencies run: | - apk add --no-cache git nodejs go abuild curl sudo + apk update + apk add --no-cache git nodejs go abuild curl sudo build-base - name: Checkout repository uses: actions/checkout@v4