From 56ee4fab6c78559159e1c6bd26a64c3314d1d288 Mon Sep 17 00:00:00 2001 From: ChiaraBm Date: Fri, 20 Feb 2026 22:58:41 +0100 Subject: [PATCH] Fixed dotnet build commands in publish action --- .gitea/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index 3b685ff..8cc5e8e 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -19,11 +19,11 @@ jobs: # Build project - name: Build project - run: dotnet build Moonlight.PluginTemplate --configuration Release + run: dotnet build Moonlight.PluginTemplate.csproj --configuration Release # Publish project - name: Publish NuGet package - run: dotnet pack Moonlight.PluginTemplate --configuration Release --output ./artifacts + run: dotnet pack Moonlight.PluginTemplate.csproj --configuration Release --output ./artifacts - name: Push nuget package run: dotnet nuget push ./artifacts/*.nupkg --skip-duplicate --source https://git.battlestati.one/api/packages/Moonlight-Panel/nuget/index.json --api-key ${{ secrets.ACCESS_TOKEN }} \ No newline at end of file