Skip to content

Commit

Permalink
fix(build): channel name
Browse files Browse the repository at this point in the history
  • Loading branch information
miyasan31 committed Aug 11, 2023
1 parent 40a9295 commit 8813687
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion example/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/6905d78c-6ca4-4b50-b202-df298c40059a"
"url": "https://u.expo.dev/ec1b5c8a-2789-42ea-835b-e24db32c5e5d"
}
}
}
6 changes: 3 additions & 3 deletions example/eas.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"build": {
"dev": {
"development": {
"developmentClient": true,
"channel": "development",
"distribution": "internal",
"ios": {
"simulator": true
}
},
"stg": {
"staging": {
"distribution": "internal",
"channel": "staging"
},
"prod": {
"production": {
"channel": "production"
}
}
Expand Down
18 changes: 9 additions & 9 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build:dev": "eas build --profile dev --platform all",
"build:dev:ios": "eas build --profile dev --platform ios",
"build:dev:android": "eas build --profile dev --platform android",
"build:stg": "eas build --profile stg --platform all",
"build:stg:ios": "eas build --profile stg --platform ios",
"build:stg:android": "eas build --profile stg --platform android",
"build:prod": "eas build --profile prod --platform all",
"build:prod:ios": "eas build --profile prod --platform ios",
"build:prod:android": "eas build --profile prod --platform android"
"build:dev": "eas build --profile development --platform all",
"build:dev:ios": "eas build --profile development --platform ios",
"build:dev:android": "eas build --profile development --platform android",
"build:stg": "eas build --profile staging --platform all",
"build:stg:ios": "eas build --profile staging --platform ios",
"build:stg:android": "eas build --profile staging --platform android",
"build:prod": "eas build --profile production --platform all",
"build:prod:ios": "eas build --profile production --platform ios",
"build:prod:android": "eas build --profile production --platform android"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.2",
Expand Down

0 comments on commit 8813687

Please sign in to comment.