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.
1 parent 972e941 commit a6b2876Copy full SHA for a6b2876
.github/workflows/deploy_to_cocoapods.yml
@@ -0,0 +1,21 @@
1
+name: deploy_to_cocoapods
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - '*'
7
8
+jobs:
9
+ build:
10
11
+ runs-on: macOS-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v1
15
+ - name: Install Cocoapods
16
+ run: |
17
+ gem install cocoapods
18
+ pod install --project-directory=Example
19
+ - uses: michaelhenry/deploy-to-cocoapods-github-action@1.0.9
20
+ env:
21
+ COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
0 commit comments