File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 55 runs-on : macOS-latest
66 steps :
77 - name : Checkout
8- uses : actions/checkout@v1
8+ uses : actions/checkout@v2
99 - name : Select Xcode
1010 run : sudo xcode-select -s /Applications/Xcode_11.4.app
1111 - name : Build and Test SPM
1919 options : --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined
2020 steps :
2121 - name : Checkout
22- uses : actions/checkout@v1
22+ uses : actions/checkout@v2
2323 - name : Build and Test
2424 run : swift test
Original file line number Diff line number Diff line change 1+ name : Publish CocoaPods package
2+ on :
3+ release :
4+ types : [created]
5+ jobs :
6+ publish :
7+ runs-on : macOS-latest
8+ steps :
9+ - name : Checkout
10+ uses : actions/checkout@v2
11+ - name : Select Xcode
12+ run : sudo xcode-select -s /Applications/Xcode_11.4.app
13+ - name : Publish Pod
14+ run : pod trunk push --allow-warnings
15+ env :
16+ COCOAPODS_TRUNK_TOKEN : ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
17+
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = 'ScaleCodec'
3- s . version = '0.0.1 '
3+ s . version = '0.1.0 '
44 s . summary = 'SCALE codec implementation for Swift language'
55
66 s . description = <<-DESC
You can’t perform that action at this time.
0 commit comments