From f243f30e5270bc4b8bb1bbe856e3aa76397166b8 Mon Sep 17 00:00:00 2001 From: masiton Date: Tue, 1 Jul 2025 14:09:07 +0200 Subject: [PATCH] Added dependency step to build. --- .gitea/workflows/publish-nuget.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/publish-nuget.yml b/.gitea/workflows/publish-nuget.yml index df840f7..652da11 100644 --- a/.gitea/workflows/publish-nuget.yml +++ b/.gitea/workflows/publish-nuget.yml @@ -11,6 +11,13 @@ jobs: image: mcr.microsoft.com/dotnet/sdk:9.0 steps: + - name: Install Node.js and dependencies + run: | + apt-get update + apt-get install -y curl gnupg + curl -fsSL https://deb.nodesource.com/setup_18.x | bash - + apt-get install -y nodejs git + - name: Checkout uses: actions/checkout@v3