From b2c38a4840daefab5fe55d93702b32708d09f6cc Mon Sep 17 00:00:00 2001 From: William Chong Date: Wed, 11 Sep 2024 17:28:37 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A9=20Mitigate=20fastlane=20error=20on?= =?UTF-8?q?=20android?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/lint_build.yml | 2 +- .github/workflows/production_build.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint_build.yml b/.github/workflows/lint_build.yml index 84f4930d..f3e150da 100644 --- a/.github/workflows/lint_build.yml +++ b/.github/workflows/lint_build.yml @@ -77,7 +77,7 @@ jobs: run: ./gradlew assembleDebug working-directory: android - name: Archive APK - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: apk path: android/app/build/outputs/apk diff --git a/.github/workflows/production_build.yaml b/.github/workflows/production_build.yaml index 4ad56f00..cbcc3aab 100644 --- a/.github/workflows/production_build.yaml +++ b/.github/workflows/production_build.yaml @@ -120,6 +120,7 @@ jobs: run: bundle exec fastlane beta working-directory: android env: + RUBYOPT: '-rostruct' # TODO: Remove when https://github.com/fastlane/fastlane/pull/21950 gets released SENTRY_LOAD_DOTENV: 0 ANDROID_RELEASE_KEY_STORE_PASSWORD: ${{ secrets.ANDROID_RELEASE_KEY_STORE_PASSWORD }} ANDROID_RELEASE_KEY_KEY_PASSWORD: ${{ secrets.ANDROID_RELEASE_KEY_KEY_PASSWORD }}