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