Skip to content

Commit 8ed178d

Browse files
committed
build archive
Signed-off-by: Joseph Mattello <[email protected]>
1 parent c3f5580 commit 8ed178d

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/build_app.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,18 @@ jobs:
3434
set-env-from-proj PROJECT_NAME
3535
3636
- name: Build and install app
37-
shell: bash
3837
run: |
39-
xcodebuild -scheme "$SCHEME" install DSTROOT=build/root
38+
xcodebuild -project AltStore.xcodeproj \
39+
-scheme AltServer \
40+
-sdk macosx \
41+
install \
42+
CODE_SIGNING_REQUIRED=NO \
43+
AD_HOC_CODE_SIGNING_ALLOWED=YES \
44+
CODE_SIGNING_ALLOWED=NO \
45+
DEVELOPMENT_TEAM=XYZ0123456 \
46+
ORG_IDENTIFIER=com.SideStore \
47+
DSTROOT=build/root \
48+
| xcpretty && exit ${PIPESTATUS[0]}
4049
4150
- name: Package app
4251
run: |

0 commit comments

Comments
 (0)