From d22dc28af30635d3faa49ebf856cef93563970c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 22 Aug 2026 18:34:09 +0200 Subject: [PATCH] Fix CI: drop upload-artifact (unsupported on Gitea, unused downstream) actions/upload-artifact@v4+ refuses to run on Gitea (it's detected as GHES, and v4's new backend API explicitly isn't supported there - GHESNotSupportedError). Rather than pin back to the last GHES-compatible v3.2.2, just remove the step: the publish job doesn't consume this artifact - it does its own independent checkout+build - so it was only ever a convenience for manually downloading dist/ from a CI run, not something the pipeline depends on. Co-Authored-By: Claude Sonnet 5 --- .gitea/workflows/ci.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 7bc2b4b..344abb9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -72,11 +72,6 @@ jobs: npm install --no-save typescript npx tsc -p package/tsconfig.json - - uses: https://github.com/actions/upload-artifact@v4 - with: - name: vpinball-wasm-dist - path: dist/ - publish: name: Publish to npm registry if: startsWith(github.ref, 'refs/tags/')