ci: pin upload-artifact to v3 (Gitea GHES-mode incompatible with v4) #62

Merged
bvandeusen merged 1 commits from dev into main 2026-06-01 17:38:24 -04:00
+4 -1
View File
@@ -85,7 +85,10 @@ jobs:
- name: Upload debug APK
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
# Gitea Actions runs in GHES-emulation mode; @actions/artifact v2+
# (i.e. upload-artifact@v4+) errors with "GHESNotSupportedError".
# Pin to @v3 until act_runner or the artifact backend catches up.
uses: actions/upload-artifact@v3
with:
name: minstrel-android-debug-${{ github.sha }}
path: android/app/build/outputs/apk/debug/app-debug.apk