File tree Expand file tree Collapse file tree 5 files changed +22
-14
lines changed Expand file tree Collapse file tree 5 files changed +22
-14
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ custom_categories:
7
7
- Thenable
8
8
- CatchMixin
9
9
- Resolver
10
- xcodebuild_arguments :
11
- - UseModernBuildSystem=NO
12
10
output :
13
11
../output
14
12
# output directory is relative to config file… ugh
Original file line number Diff line number Diff line change 4
4
inputs :
5
5
version :
6
6
required : true
7
+ pods :
8
+ required : false
7
9
jobs :
8
10
pods :
11
+ if : ${{ github.event.inputs.pods != 'false' }}
9
12
runs-on : macos-latest
10
13
steps :
11
14
Original file line number Diff line number Diff line change 40
40
- uses : actions/checkout@v2
41
41
- uses : softprops/action-gh-release@v1
42
42
env :
43
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
43
+ GITHUB_TOKEN : ${{ secrets.JAZZY_PAT }}
44
44
with :
45
45
tag_name : ${{ github.event.inputs.version }}
46
46
name : ${{ github.event.inputs.version }}
47
-
48
- cd :
49
- needs : create-release
50
- runs-on : ubuntu-latest
51
- steps :
52
- - uses : aurelien-baudet/workflow-dispatch@v2
53
- with :
54
- workflow : CD
55
- token : ${{ secrets.JAZZY_PAT }}
56
- inputs : " {\" version\" : \" ${{ github.event.inputs.version }}\" }"
57
- wait-for-completion : false
Original file line number Diff line number Diff line change
1
+ on :
2
+ release :
3
+ types : published
4
+ jobs :
5
+ cd :
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - uses : aurelien-baudet/workflow-dispatch@v2
9
+ with :
10
+ workflow : CD
11
+ token : ${{ secrets.JAZZY_PAT }}
12
+ inputs : " {\" version\" : \" ${{ github.event.release.tag_name }}\" }"
13
+ wait-for-completion : false
Original file line number Diff line number Diff line change
1
+ # Installing PromiseKit
2
+
1
3
We support [ SwiftPM] :
2
4
3
5
``` swift
@@ -16,6 +18,9 @@ package.targets.append(
16
18
17
19
And CocoaPods:
18
20
21
+ > Please note, we have not released this CocoaPod yet. You * can* still use it
22
+ > but you will need to specify the podspec URL manually, see the Cocoapods docs.
23
+
19
24
``` ruby
20
25
pod " PromiseKit" , " ~> 7.0.0-rc1"
21
26
pod " PromiseKit/Foundation" , " ~> 7.0.0-rc1"
You can’t perform that action at this time.
0 commit comments