From eac0873d9a3d236bd528c3a6917b23ef3d81c5d1 Mon Sep 17 00:00:00 2001 From: LucaZanni Date: Fri, 3 Apr 2026 17:17:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(ci):=20usa=20upload-artifact?= =?UTF-8?q?=20da=20GitHub=20per=20compatibilit=C3=A0=20Gitea?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - gitea.com/actions/upload-artifact@v3 usa @actions/artifact v2.0.0+ non compatibile con GHES/Gitea - github.com/actions/upload-artifact@v3 usa @actions/artifact v1.x compatibile Fixes #6 @15m --- .gitea/workflows/capacitor-android.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/capacitor-android.yml b/.gitea/workflows/capacitor-android.yml index 43074e4..b6effd9 100644 --- a/.gitea/workflows/capacitor-android.yml +++ b/.gitea/workflows/capacitor-android.yml @@ -123,7 +123,7 @@ jobs: - name: Upload APK artifact if: inputs.output-format == 'apk' - uses: https://gitea.com/actions/upload-artifact@v3 + uses: https://github.com/actions/upload-artifact@v3 with: name: android-${{ inputs.build-type || 'debug' }}-apk path: android/app/build/outputs/apk/${{ inputs.build-type || 'debug' }}/*.apk @@ -131,7 +131,7 @@ jobs: - name: Upload AAB artifact if: inputs.output-format == 'aab' - uses: https://gitea.com/actions/upload-artifact@v3 + uses: https://github.com/actions/upload-artifact@v3 with: name: android-release-aab path: android/app/build/outputs/bundle/release/*.aab @@ -139,7 +139,7 @@ jobs: - name: Upload Gradle build reports if: always() - uses: https://gitea.com/actions/upload-artifact@v3 + uses: https://github.com/actions/upload-artifact@v3 with: name: gradle-build-reports path: android/build/reports/