From 2277b5765aea312643f784381ac5e91db5695e16 Mon Sep 17 00:00:00 2001 From: Fernanda Toledo Date: Tue, 16 Jun 2026 12:40:38 -0300 Subject: [PATCH 1/3] fix: update eas build action --- .github/workflows/eas-build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index f4ce7634..081f944c 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -106,18 +106,18 @@ jobs: exit 1 fi - - name: 📦 Setup Expo and EAS - uses: expo/expo-github-action@v8 - with: - eas-version: latest - token: ${{ secrets.EXPO_TOKEN }} - - name: 📦 Checkout project repo uses: actions/checkout@v4 with: fetch-depth: 0 token: ${{ secrets.NEW_VERSION_NUMBER_PAT }} + - name: 📦 Setup Expo and EAS + uses: expo/expo-github-action@v8 + with: + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + - name: 📦 Setup Node + PNPM + install deps uses: ./.github/actions/setup-node-pnpm-install From e227dca9d7f994c288848d92f1a1d969d83e3d60 Mon Sep 17 00:00:00 2001 From: Fernanda Toledo Date: Tue, 16 Jun 2026 12:50:23 -0300 Subject: [PATCH 2/3] fix: testing purposes of action --- .github/workflows/eas-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index 081f944c..a97b2c35 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -79,7 +79,7 @@ jobs: runs-on: ${{ inputs.platform == 'ios' && 'macos-latest' || 'ubuntu-latest' }} permissions: contents: write - environment: ${{ github.ref_name == 'main' && 'production' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'qa' && 'qa' || github.ref_name == 'development' && 'development' }} + environment: ${{ github.ref_name == 'main' && 'production' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'qa' && 'qa' || github.ref_name == 'development' && 'development' || github.ref_name == 'fix/actions' && 'qa' }} steps: - name: Set environment variable run: | @@ -91,6 +91,8 @@ jobs: echo "ENV=qa" >> $GITHUB_ENV elif [[ "${{ github.ref_name }}" == "development" ]]; then echo "ENV=development" >> $GITHUB_ENV + elif [[ "${{ github.ref_name }}" == "fix/actions" ]]; then + echo "ENV=qa" >> $GITHUB_ENV else echo "Invalid branch: ${{ github.ref_name }}. You can only build for main, staging, qa or development branches." exit 1 From a5592f912b532444f47428c8ac0b1fe05b3569f9 Mon Sep 17 00:00:00 2001 From: Fernanda Toledo Date: Wed, 17 Jun 2026 22:59:44 -0300 Subject: [PATCH 3/3] Revert "fix: testing purposes of action" This reverts commit e227dca9d7f994c288848d92f1a1d969d83e3d60. --- .github/workflows/eas-build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/eas-build.yml b/.github/workflows/eas-build.yml index a97b2c35..081f944c 100644 --- a/.github/workflows/eas-build.yml +++ b/.github/workflows/eas-build.yml @@ -79,7 +79,7 @@ jobs: runs-on: ${{ inputs.platform == 'ios' && 'macos-latest' || 'ubuntu-latest' }} permissions: contents: write - environment: ${{ github.ref_name == 'main' && 'production' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'qa' && 'qa' || github.ref_name == 'development' && 'development' || github.ref_name == 'fix/actions' && 'qa' }} + environment: ${{ github.ref_name == 'main' && 'production' || github.ref_name == 'staging' && 'staging' || github.ref_name == 'qa' && 'qa' || github.ref_name == 'development' && 'development' }} steps: - name: Set environment variable run: | @@ -91,8 +91,6 @@ jobs: echo "ENV=qa" >> $GITHUB_ENV elif [[ "${{ github.ref_name }}" == "development" ]]; then echo "ENV=development" >> $GITHUB_ENV - elif [[ "${{ github.ref_name }}" == "fix/actions" ]]; then - echo "ENV=qa" >> $GITHUB_ENV else echo "Invalid branch: ${{ github.ref_name }}. You can only build for main, staging, qa or development branches." exit 1