File tree 2 files changed +41
-8
lines changed
2 files changed +41
-8
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - publish
5
+ - ft-app-deployment
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ # - name: 🏗 Setup repo
12
+ # uses: actions/checkout@v4
13
+ # with:
14
+ # fetch-depth: 1
15
+
16
+ # - name: 🏗 Setup EAS
17
+ # uses: expo/expo-github-action@v8
18
+ # with:
19
+ # eas-version: latest
20
+ # token: ${{ secrets.EXPO_TOKEN }}
21
+
22
+ # - name: 📦 Install dependencies
23
+ # run: npm install
24
+
25
+ # - name: 🚀 Build & Submit app
26
+ # run: eas build --platform $PLATFORM --profile $PROFILE --auto-submit --non-interactive
27
+ - name : Check environment variables
28
+ run : echo "PLATFORM: $PLATFORM, PROFILE: $PROFILE"
29
+ env :
30
+ PLATFORM : ${{ env.BUILD_PLATFORM }}
31
+ PROFILE : ${{ env.BUILD_PROFILE }}
Original file line number Diff line number Diff line change 4
4
"appVersionSource" : " remote"
5
5
},
6
6
"build" : {
7
- "development " : {
8
- "developmentClient " : true ,
9
- "distribution" : " internal " ,
7
+ "preview " : {
8
+ "autoIncrement " : true ,
9
+ "distribution" : " store " ,
10
10
"android" : {
11
11
"buildType" : " apk"
12
12
}
13
13
},
14
- "preview" : {
15
- "distribution" : " internal"
16
- },
17
14
"production" : {
18
15
"autoIncrement" : true ,
16
+ "distribution" : " store" ,
19
17
"android" : {
20
18
"buildType" : " apk"
21
19
}
22
20
}
23
21
},
24
22
"submit" : {
25
- "production" : {},
26
- "preview" : {}
23
+ "preview" : {
24
+ "ios" : {
25
+ "ascAppId" : " 6670758891" ,
26
+ "appleTeamId" : " LAF47944D6"
27
+ }
28
+ }
27
29
}
28
30
}
You can’t perform that action at this time.
0 commit comments