Create CocoaPods.yml
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
name: deploy_to_cocoapods
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
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 trunk push Euler.podspec --allow-warnings --verbose
|
||||
env:
|
||||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
|
||||
Reference in New Issue
Block a user