EAS build fails on Github actions worflow

Trying to automate build throw Github actions … i’m facing an error while uploading code to EAS server , i got 0/2.1MB.

here are the errors :

Compressing project files and uploading to EAS Build.

  • Uploading to EAS Build (0 / 2.1 MB)

:heavy_check_mark: Uploaded to EAS

Build request failed. Make sure you are using the latest eas-cli version. If the problem persists, report the issue.
Error: build command failed.
Error: Process completed with exit code 1.

my wokflow

name: Build integration
on: push

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: 🏗 Setup repo
        uses: actions/checkout@v3

      - name: 🏗 Setup Node
        uses: actions/setup-node@v3
        with:
          node-version: 18.x
          cache: yarn

      - name: 🏗 Setup EAS
        uses: expo/expo-github-action@v8
        with:
          eas-version: latest
          token: ${{ secrets.EXPO_TOKEN }}

      - name: 📦 Install dependencies
        run: yarn install

      - name: 📥 Install EAS CLI
        run: npm install -g eas-cli

      - name: 🚀 Build app
        run: eas build --profile integration --platform ios --non-interactive

Adding this to my app.json doesn’t solve the issue

"extra": {
  "eas": {
    "projectId": "*********************"
  }
}

can you share the full logs?

Yes please find the full log in link bellow :
https://justpaste.it/8398x
thanks

do you see the same error if you run eas build locally? can you share eas.json configuration?

No it works on local … i’ve changed the token and now it is working . thanks for your help

Remove the extra npm install -g eas-cli. The action does that for you and based on your error you have an older version of eas-cli getting in.