Skip to content

Commit

Permalink
Create deploy_to_cocoapods.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Lumyk authored Feb 16, 2021
1 parent d6cac27 commit 169d332
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy_to_cocoapods.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: deploy_to_cocoapods

on:
push:
tags:
- '*'

jobs:
build:

runs-on: macOS-latest

steps:
- uses: actions/checkout@v2

- name: Install Cocoapods
run: gem install cocoapods

- name: Deploy to Cocoapods
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
run: ./repo.sh push

0 comments on commit 169d332

Please sign in to comment.