Skip to content

Commit

Permalink
add deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshin21 committed Jan 9, 2020
1 parent 0b22584 commit 39e7a57
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/deploy-pods.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: deploy-pod

on:
push:
tags: v*

jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Lint
run: pod spec lint
- name: Deploy
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
run: pod trunk push Anima.podspec

0 comments on commit 39e7a57

Please sign in to comment.