From 2c92baa0a1ace557fb98b7525402f00e4f92c55a Mon Sep 17 00:00:00 2001 From: Decobus Date: Sun, 20 Jul 2025 13:21:45 -0400 Subject: [PATCH] Fix GitHub Actions artifact upload for GHES compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Downgrade upload-artifact from v4 to v3 for GHES compatibility - Remove include-hidden-files parameter (not available in v3) GHES doesn't support the newer v4 actions yet. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .forgejo/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index b779fe7..5a7d0b0 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -31,8 +31,7 @@ jobs: run: npm run build - name: Upload Build Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: obs-ss-build - include-hidden-files: 'true' path: ./.next/* \ No newline at end of file