From 9859008cdb2ebad18809a97ace8f2c7c6adf73ad Mon Sep 17 00:00:00 2001 From: Stanislav Pastushenko Date: Tue, 9 Dec 2025 22:01:12 +0100 Subject: [PATCH] guitea build --- .gitea/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a17ad90..b77ecfe 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -35,8 +35,13 @@ jobs: setup_cmd: "apt-get update && apt-get install -y mingw-w64" steps: -# - name: Checkout code -# uses: actions/checkout@v4 + - name: Install Node.js for Actions + run: | + apt-get update + apt-get install -y nodejs npm + + - name: Checkout code + uses: actions/checkout@v4 - name: Setup cross-compilation tools if: matrix.setup_cmd != ''