File tree 1 file changed +20
-16
lines changed
1 file changed +20
-16
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ on: [push]
5
5
jobs :
6
6
build :
7
7
8
- # runs-on: macOS-latest
9
- runs-on : macos-13
8
+ runs-on : macOS-latest
9
+ # runs-on: macos-13
10
10
11
11
steps :
12
12
# - uses: swift-actions/setup-swift@v1
@@ -30,23 +30,27 @@ jobs:
30
30
if : steps.cache.outputs.cache-hit != 'true'
31
31
run : ./get_frameworks.sh
32
32
33
+ - name : get resources
34
+ if : steps.cache.outputs.cache-hit != 'true'
35
+ run : ./get_resources.sh
36
+
33
37
- name : copy xcconfig
34
38
run : cp template_setup.xcconfig developer_setup.xcconfig
35
39
36
40
- name : BlinkTests
37
41
run : xcodebuild -project Blink.xcodeproj -scheme BlinkTests -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPad Air (5th generation)' test | xcpretty
38
42
39
- - name : actual build
40
- run : set -o pipefail && xcodebuild archive -project Blink.xcodeproj -scheme Blink -sdk iphoneos -configuration Debug clean build IPHONEOS_DEPLOYMENT_TARGET='16.1' CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO ONLY_ACTIVE_ARCH=NO | tee build.log | xcpretty
41
-
42
- - name : generate unsigned debug ipa
43
- run : |
44
- cd ~
45
- mkdir Payload
46
- mv ~/Library/Developer/Xcode/Archives/*/*/Products/Applications/Blink.app ~/Payload/
47
- zip -r Blink.ipa Payload
48
- - name : upload ipa
49
-
50
- with :
51
- name : ' BlinkShell'
52
- path : ~/Blink.ipa
43
+ # - name: actual build
44
+ # run: set -o pipefail && xcodebuild archive -project Blink.xcodeproj -scheme Blink -sdk iphoneos -configuration Debug clean build IPHONEOS_DEPLOYMENT_TARGET='16.1' CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO ONLY_ACTIVE_ARCH=NO | tee build.log | xcpretty
45
+
46
+ # - name: generate unsigned debug ipa
47
+ # run: |
48
+ # cd ~
49
+ # mkdir Payload
50
+ # mv ~/Library/Developer/Xcode/Archives/*/*/Products/Applications/Blink.app ~/Payload/
51
+ # zip -r Blink.ipa Payload
52
+ # - name: upload ipa
53
+
54
+ # with:
55
+ # name: 'BlinkShell'
56
+ # path: ~/Blink.ipa
You can’t perform that action at this time.
0 commit comments