We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f5580 commit 5e26f07Copy full SHA for 5e26f07
.github/workflows/build_app.yml
@@ -34,9 +34,18 @@ jobs:
34
set-env-from-proj PROJECT_NAME
35
36
- name: Build and install app
37
- shell: bash
38
run: |
39
- xcodebuild -scheme "$SCHEME" install DSTROOT=build/root
+ xcodebuild -project AltServer.xcodeproj \
+ -scheme AltServer \
40
+ -sdk macos \
41
+ archive -archivePath ./archive \
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]}
49
50
- name: Package app
51
0 commit comments