From 4c8ce23e8a6479fdf727bd2f4c7a51cdd98d02a8 Mon Sep 17 00:00:00 2001 From: Professor Fartsalot Date: Sun, 31 Aug 2025 02:22:22 -0400 Subject: [PATCH] Update build.yml --- .gitea/workflows/build.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 4af1591..fa70614 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -13,10 +13,6 @@ jobs: uses: actions/checkout@v4 with: submodules: true - - - name: Verify .NET installation - run: dotnet --version - - name: Restore dependencies run: dotnet restore @@ -29,13 +25,8 @@ jobs: - name: Build project run: dotnet build --no-restore --configuration Release --nologo - - name: Publish Windows self-contained executable - run: | - dotnet publish MareSynchronos.csproj \ - -c Release \ - -r win-x64 \ - --self-contained true \ - -o ./publish + - name: Publish Windows executable + run: dotnet publish -c Release -r win-x64 --self-contained true -o ./publish - name: Archive published files run: zip -r SnowcloakClient.zip ./publish/*