Skip to content

Commit a6b2876

Browse files
committed
Create deploy_to_cocoapods.yml
1 parent 972e941 commit a6b2876

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)