File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Release to Cocoapods
2
+ on :
3
+ release :
4
+ types : [created]
5
+ jobs :
6
+ deploy :
7
+ runs-on : macos-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+
11
+ - name : Install Cocoapods
12
+ run : gem install cocoapods
13
+
14
+ - name : Deploy to Cocoapods
15
+ run : |
16
+ set -eo pipefail
17
+ pod lib lint --allow-warnings
18
+ pod trunk push --allow-warnings
19
+ env :
20
+ COCOAPODS_TRUNK_TOKEN : ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ This module is an easy way to upload video file to the api.video platform
9
9
10
10
1 . Add the following entry to your Podfile:
11
11
``` swift
12
- pod ‘IosVideoUploader ’
12
+ pod ‘VideoUploaderIos ’
13
13
```
14
14
3 . Then run ` pod install `
15
- 4 . Don’t forget to import ‘IosVideoUploader ’ in every file you’d like to use api.video video uploader library
15
+ 4 . Don’t forget to import ‘VideoUploaderIos ’ in every file you’d like to use api.video video uploader library
16
16
17
17
18
18
### FAQ
Original file line number Diff line number Diff line change 8
8
9
9
Pod ::Spec . new do |s |
10
10
s . name = 'VideoUploaderIos'
11
- s . version = '0.0.2 '
11
+ s . version = '0.0.1 '
12
12
s . summary = 'A library to upload video files to api.video platform.'
13
13
14
14
# This description is used to generate tags and improve search results.
You can’t perform that action at this time.
0 commit comments