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 1, 2024
1 parent c017178 commit af6f32f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"expo": {
"name": "PULSE",
"slug": "atlp-pulse",
"slug": "devpulse",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
Expand Down

0 comments on commit af6f32f

Please sign in to comment.