Create publish.yml

This commit is contained in:
osborn 2020-03-24 17:20:39 +08:00 committed by GitHub
parent 90e494222d
commit 1a2abb2443
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

24
.github/workflows/publish.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Publish SDK
on:
push:
tags:
- '*'
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
- name: Setup
run: sh setup.sh
- name: Install Cocoapods
run: |
gem install cocoapods
- name: Publish
run: |
sh publish.sh
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}