@@ -4,6 +4,8 @@ This action builds your iOS project (`.xcodeproj`, `.xcworkspace`) and exports t
44
55Tested with Ionic, React Native and native ios projects.
66
7+ Originally forked from ` yukiarrr/ios-build-action ` .
8+
79## Inputs
810
911You can add a single p12 key+cert file with ` p12-base64 ` , or if you have key and cert in separate files
@@ -99,24 +101,24 @@ Remember to run `yarn install` and `yarn bundle` if you make changes to the `ind
99101``` yaml
100102- uses : sparkfabrik/ios-build-action@v1.0.0
101103 with :
102- project-path : Unity-iPhone .xcodeproj
104+ project-path : App .xcodeproj
103105 p12-base64 : ${{ secrets.P12_BASE64 }}
104106 mobileprovision-base64 : ${{ secrets.MOBILEPROVISION_BASE64 }}
105107 code-signing-identity : ${{ secrets.CODE_SIGNING_IDENTITY }}
106108 team-id : ${{ secrets.TEAM_ID }}
107- workspace-path : Unity-iPhone .xcworkspace # optional
109+ workspace-path : App .xcworkspace # optional
108110` ` `
109111
110112### key and cert
111113
112114` ` ` yaml
113115- uses : sparkfabrik/ios-build-action@v1.0.0
114116 with :
115- project-path : Unity-iPhone .xcodeproj
117+ project-path : App .xcodeproj
116118 p12-key-base64 : ${{ secrets.P12_KEY_BASE64 }}
117119 p12-cer-base64 : ${{ secrets.P12_CER_BASE64 }}
118120 mobileprovision-base64 : ${{ secrets.MOBILEPROVISION_BASE64 }}
119121 code-signing-identity : ${{ secrets.CODE_SIGNING_IDENTITY }}
120122 team-id : ${{ secrets.TEAM_ID }}
121- workspace-path : Unity-iPhone .xcworkspace # optional
123+ workspace-path : App .xcworkspace # optional
122124` ` `
0 commit comments