From 1438e7b4b94d384d4bce0e0bdd76b33d1d284607 Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Thu, 2 Apr 2026 03:18:00 +0200 Subject: [PATCH] fix: install nodejs before checkout (required by actions/checkout) Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/apk-publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/apk-publish.yml b/.gitea/workflows/apk-publish.yml index ea9bd89..dc5072b 100644 --- a/.gitea/workflows/apk-publish.yml +++ b/.gitea/workflows/apk-publish.yml @@ -11,12 +11,12 @@ jobs: container: image: alpine:latest steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Install build dependencies run: | - apk add --no-cache git go abuild curl sudo + apk add --no-cache git nodejs go abuild curl sudo + + - name: Checkout repository + uses: actions/checkout@v4 - name: Create build user run: |