Skip to content

Commit

Permalink
chore(ci): add a cocoapods release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Apr 8, 2022
1 parent c80dde6 commit 3b99d42
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release to Cocoapods
on:
release:
types: [published]
jobs:
deploy:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2

- name: Install Cocoapods
run: gem install cocoapods

- name: Deploy to Cocoapods
run: |
set -eo pipefail
pod lib lint --allow-warnings
pod trunk push --allow-warnings
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}

0 comments on commit 3b99d42

Please sign in to comment.