diff --git a/.easignore b/.easignore deleted file mode 100644 index bc4ba0f..0000000 --- a/.easignore +++ /dev/null @@ -1,32 +0,0 @@ -# expo -.expo/ - -# dependencies -/node_modules - -# misc -.env -.env.local -.env.development.local -.env.test.local -.env.production.local - -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# VS Code -.history/ -.vscode/launch.json -.vscode - -# macOS -.DS_Store - -expo-env.d.ts - -coverage/**/* -.idea/ -android/ -ios/ -package-lock.json \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f76552c..9dbfda4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,7 +25,16 @@ jobs: token: ${{ secrets.EXPO_TOKEN }} - name: 📦 Install dependencies - run: npm install + run: | + npm install + npx expo install --fix + + # This step will be deprecated and removed in the future once the google play account is created. + - name: 🚀 Build Android App + run: eas build --platform android --profile $PROFILE --non-interactive + env: + PROFILE: ${{ vars.BUILD_PROFILE }} + EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }} - name: 🚀 Build & Submit ios App run: | @@ -36,11 +45,4 @@ jobs: rm .easignore env: PROFILE: ${{ vars.BUILD_PROFILE }} - EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }} - - # This step will be deprecated and removed in the future once the google play account is created. - - name: 🚀 Build Android App - run: eas build --platform android --profile $PROFILE --non-interactive - env: - PROFILE: ${{ vars.BUILD_PROFILE }} - EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }} + EXPO_PUBLIC_APOLLO_CLIENT_URI: ${{ vars.EXPO_PUBLIC_APOLLO_CLIENT_URI }} \ No newline at end of file diff --git a/app.json b/app.json index 951846f..73caca3 100644 --- a/app.json +++ b/app.json @@ -1,11 +1,11 @@ { "expo": { - "name": "PULSE", - "slug": "atlp-pulse", - "version": "1.0.0", + "name": "Devpulse", + "slug": "devpulse", + "version": "1.0.1", "orientation": "portrait", "icon": "./assets/images/icon.png", - "scheme": "pulseapp", + "scheme": "devpulse", "userInterfaceStyle": "automatic", "splash": { "image": "./assets/images/splash.png", @@ -32,7 +32,7 @@ "data": [ { "scheme": "https", - "host": "*.devdevpulse.org", + "host": "*.devpulse.org", "pathPrefix": "/register" } ],