diff --git a/.github/actions/javascript/getAndroidRolloutPercentage/action.yml b/.github/actions/javascript/getAndroidRolloutPercentage/action.yml index 7c49dfcf1905..3069ddfedd9d 100644 --- a/.github/actions/javascript/getAndroidRolloutPercentage/action.yml +++ b/.github/actions/javascript/getAndroidRolloutPercentage/action.yml @@ -1,9 +1,6 @@ name: 'Get Android Rollout percentage' description: 'Gets the current Android track rollout percentage.' inputs: - GITHUB_TOKEN: - description: Auth token for New Expensify Github - required: true GOOGLE_KEY_FILE: description: Authentication file for Google Cloud API required: true diff --git a/.github/actions/javascript/getAndroidRolloutPercentage/getAndroidRolloutPercentage.ts b/.github/actions/javascript/getAndroidRolloutPercentage/getAndroidRolloutPercentage.ts index aeaf92f1faae..e0f4f2ebfee3 100644 --- a/.github/actions/javascript/getAndroidRolloutPercentage/getAndroidRolloutPercentage.ts +++ b/.github/actions/javascript/getAndroidRolloutPercentage/getAndroidRolloutPercentage.ts @@ -1,11 +1,8 @@ import * as core from '@actions/core'; import {google} from 'googleapis'; -import CONST from '@github/libs/CONST'; -import GithubUtils from '@github/libs/GithubUtils'; const PACKAGE_NAME = core.getInput('PACKAGE_NAME', {required: true}); const GOOGLE_KEY_FILE = core.getInput('GOOGLE_KEY_FILE', {required: true}); -const HALTED_STATUS = 'halted'; async function getAndroidRolloutPercentage() { const auth = new google.auth.GoogleAuth({ diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fed83617bb92..5803c894689a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -170,7 +170,10 @@ jobs: run: working-directory: Mobile-Expensify/react-native steps: - - name: Checkout + - name: Checkout App repo + uses: actions/checkout@v4 + + - name: Checkout Mobile-Expensify repo uses: actions/checkout@v4 with: repository: 'Expensify/Mobile-Expensify' @@ -266,7 +269,6 @@ jobs: with: GOOGLE_KEY_FILE: android/app/android-fastlane-json-key.json PACKAGE_NAME: org.me.mobiexpensifyg - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Submit production build for Google Play review and a slow rollout if: ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }} @@ -614,6 +616,7 @@ jobs: - name: Submit production build for App Store review and a slow rollout if: ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }} run: | + ls -laR . # Complete the previous version rollout bundle exec fastlane ios complete_hybrid_rollout