Skip to content

Commit

Permalink
fix: project slug issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fredshema committed Nov 5, 2024
1 parent a735812 commit 1dce1e7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 47 deletions.
32 changes: 0 additions & 32 deletions .easignore

This file was deleted.

22 changes: 12 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,24 @@ 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: |
rm .easignore
rm -f .easignore
cp .gitignore .easignore
echo '\npackage-lock.json' >> .easignore
eas build --platform ios --profile $PROFILE --auto-submit --non-interactive
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 }}
10 changes: 5 additions & 5 deletions app.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -32,7 +32,7 @@
"data": [
{
"scheme": "https",
"host": "*.devdevpulse.org",
"host": "*.devpulse.org",
"pathPrefix": "/register"
}
],
Expand Down

0 comments on commit 1dce1e7

Please sign in to comment.