We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd9c72e + a264503 commit cc7b9cbCopy full SHA for cc7b9cb
.github/workflows/swift.yml renamed to .github/workflows/build.yml
@@ -1,4 +1,4 @@
1
-name: Swift
+name: Build
2
3
on:
4
workflow_dispatch:
@@ -77,5 +77,5 @@ jobs:
77
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
78
steps:
79
- uses: actions/checkout@v3
80
- - name: Carthage Test
+ - name: Cocoapdos Test
81
run: pod lib lint
.github/workflows/release.yml
@@ -0,0 +1,24 @@
+name: Release
+
+on:
+ push:
5
+ tags:
6
+ - "*"
7
8
+jobs:
9
+ build:
10
+ runs-on: macos-12
11
12
+ steps:
13
+ - uses: actions/checkout@v1
14
15
+ - name: Install Cocoapods
16
+ run: gem install cocoapods
17
18
+ - name: Deploy to Cocoapods
19
+ run: |
20
+ set -eo pipefail
21
+ pod lib lint --allow-warnings
22
+ pod trunk push --allow-warnings
23
+ env:
24
+ COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
0 commit comments