From 4c8b0da3da219a2ad8e1e1fd0cdee6a3dd55cc6f Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Fri, 8 May 2026 15:11:46 +0200 Subject: [PATCH] ci: drop upload-artifact step from build.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit actions/upload-artifact@v7 fails on Gitea Actions — the GitHub artifact API has compatibility gaps the Gitea runtime layer does not fully cover, and v7 specifically tripped exitcode 1 on the Strato runner. The build itself runs fine; the artefact was never consumed by anything (release.yml does its own latest.zip lookup), so the cleanest fix is to make build.yml a pure compile-health check without artefact upload. --- .github/workflows/build.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a03b780..d29a76e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,11 +51,3 @@ jobs: - name: Build (Release) run: dotnet build HellionChat/HellionChat.csproj --configuration Release --no-restore - - - name: Upload build output - uses: actions/upload-artifact@v7 - with: - name: HellionChat-build-${{ github.run_number }} - path: HellionChat/bin/Release/**/HellionChat/** - if-no-files-found: warn - retention-days: 14