File tree 3 files changed +20
-3
lines changed
3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 5
5
runs-on : macOS-latest
6
6
steps :
7
7
- name : Checkout
8
- uses : actions/checkout@v1
8
+ uses : actions/checkout@v2
9
9
- name : Select Xcode
10
10
run : sudo xcode-select -s /Applications/Xcode_11.4.app
11
11
- name : Build and Test SPM
19
19
options : --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined
20
20
steps :
21
21
- name : Checkout
22
- uses : actions/checkout@v1
22
+ uses : actions/checkout@v2
23
23
- name : Build and Test
24
24
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 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'ScaleCodec'
3
- s . version = '0.0.1 '
3
+ s . version = '0.1.0 '
4
4
s . summary = 'SCALE codec implementation for Swift language'
5
5
6
6
s . description = <<-DESC
You can’t perform that action at this time.
0 commit comments