From eee7fd73e70756523eaa1a27112369540f9087f7 Mon Sep 17 00:00:00 2001 From: Ionut Adrian Ciolan Date: Fri, 27 Mar 2026 23:47:59 +0200 Subject: [PATCH] add nodjs in build container for actions --- .gitea/workflows/build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index dd84092..5e4d190 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -11,10 +11,13 @@ jobs: container: image: mcr.microsoft.com/dotnet/sdk:7.0 steps: + - name: Install Node.js + run: apt-get update -qq && apt-get install -y nodejs + - uses: actions/checkout@v3 - name: Restore dependencies run: dotnet restore src/DiIiS-NA/Blizzless.csproj - - name: Build (Release) - run: dotnet build src/DiIiS-NA/Blizzless.csproj -c Release --no-restore + - name: Publish (Release) + run: dotnet publish src/DiIiS-NA/Blizzless.csproj -c Release --runtime linux-x64 --self-contained true -o /publish