diff --git a/.gitea/workflows/android.yml b/.gitea/workflows/android.yml index 4d5aa939..cc79437e 100644 --- a/.gitea/workflows/android.yml +++ b/.gitea/workflows/android.yml @@ -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