From 3bc7bc62510b44efcbea59081fd87222c3f5b0e1 Mon Sep 17 00:00:00 2001 From: Robin Dittmar Date: Sun, 6 Sep 2026 17:53:34 +0200 Subject: [PATCH] fix: added node installation step to deploy.yml --- .gitea/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 439889b..77b0898 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -18,7 +18,10 @@ jobs: image: golang:1.27-bookworm steps: - name: Install system dependencies - run: apt-get update && apt-get install -y --no-install-recommends git openssh-client + run: | + apt-get update && apt-get install -y --no-install-recommends git openssh-client curl + curl -fsSL https://deb.nodesource.com/setup_24.x | bash - + apt-get install -y nodejs - name: Checkout uses: actions/checkout@v4