From 3aff692ae06c6ce2be53e6d0da63881ddb169fe3 Mon Sep 17 00:00:00 2001 From: Michael Kochell <6913320+mickmister@users.noreply.github.com> Date: Wed, 13 Nov 2024 17:49:44 -0500 Subject: [PATCH] change project id --- .github/workflows/build.yml | 8 -------- apps/mobile/app.json | 10 ++++++++-- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e04ad45..6242eb72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,14 +40,6 @@ jobs: - name: 👷 Build packages for mobile run: pnpm run -w build:mobile - # You can remove this step if you already configured this - # This project shouldn't be pre-configured with this ID, that's why its omitted - - name: 👷 Configure project - working-directory: apps/mobile - run: | - eas init --id d202a56f-0162-450d-af3b-a2d2e0678594 --force --non-interactive - echo $(jq '.expo.runtimeVersion.policy = "sdkVersion"' app.json) > app.json - - name: 🚀 Build mobile if: ${{ !github.event.inputs.submit || github.event.inputs.profile != 'production' }} working-directory: apps/mobile diff --git a/apps/mobile/app.json b/apps/mobile/app.json index 5bdc5cf1..52cce97b 100644 --- a/apps/mobile/app.json +++ b/apps/mobile/app.json @@ -1,7 +1,7 @@ { "expo": { "name": "expo-monorepo", - "slug": "expo-monorepo", + "slug": "music-sniper", "version": "1.0.0", "orientation": "portrait", "icon": "./assets/icon.png", @@ -30,6 +30,12 @@ }, "web": { "favicon": "./assets/favicon.png" - } + }, + "extra": { + "eas": { + "projectId": "9ad71fa6-6329-46b0-8e1d-2e510f8385a3" + } + }, + "owner": "mjkochell" } }