From 42f7fe1aaf359ac0806bc56a799ca187d25a281e Mon Sep 17 00:00:00 2001 From: Niklas Friesen Date: Mon, 30 Mar 2026 20:15:19 +0200 Subject: [PATCH] CI: use upload-artifact@v3 for GHES compatibility GitHub Enterprise Server does not support artifact v4+ yet. Made-with: Cursor --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 846d770..485942d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,8 +32,9 @@ jobs: DEVKITPRO: /opt/devkitpro run: make -j$(nproc) + # v3: GHES does not support upload-artifact v4+ (artifact v2 backend) - name: Upload .nro artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: swr-ini-tool path: swr-ini-tool.nro