Skip to content

Commit

Permalink
Add action to push iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
mironiasty committed Sep 26, 2024
1 parent d802100 commit a24f4ae
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Package to CocoaPods
on:
release:
types: [published]
jobs:
publish-pod:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- 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 a24f4ae

Please sign in to comment.