This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/.github/workflows/publish.yml

63 lines
1.9 KiB
YAML
Raw Normal View History

2020-03-25 16:04:22 +08:00
name: Release
2020-03-24 17:20:39 +08:00
on:
2020-03-25 16:48:35 +08:00
# push:
# tags:
# - 'v*.*.*'
2020-03-25 16:41:21 +08:00
release:
2020-03-25 16:48:35 +08:00
types:
- published
2020-03-24 17:20:39 +08:00
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
2020-03-24 18:17:58 +08:00
- name: setup JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
2020-03-24 17:20:39 +08:00
- uses: actions/setup-node@v1
with:
node-version: 10
2020-03-24 19:56:45 +08:00
registry-url: 'https://registry.npmjs.org'
2020-03-25 16:04:22 +08:00
- name: Config Github Account
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.email "pengfeizhou@foxmail.com"
git config user.name "pengfei.zhou"
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
git checkout master
2020-03-24 17:20:39 +08:00
- name: Setup
run: sh setup.sh
- name: Install Cocoapods
run: |
gem install cocoapods
2020-03-24 18:58:42 +08:00
- name: Echo current Version
run: |
2020-03-25 16:04:22 +08:00
echo ${GITHUB_REF:11}>version
echo "Current Version is "${GITHUB_REF:11}
2020-03-24 17:20:39 +08:00
- name: Publish
run: |
sh publish.sh
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
2020-03-24 19:16:48 +08:00
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2020-03-24 18:05:40 +08:00
BINTARY_USER: ${{ secrets.BINTARY_USER }}
BINTARY_REPO: ${{ secrets.BINTARY_REPO }}
BINTARY_APIKEY: ${{ secrets.BINTARY_APIKEY }}
2020-03-24 18:58:42 +08:00
- name: Publish legacy
run: |
sh publish-android-legacy.sh
env:
BINTARY_USER: ${{ secrets.BINTARY_USER }}
BINTARY_REPO: ${{ secrets.BINTARY_REPO }}
BINTARY_APIKEY: ${{ secrets.BINTARY_APIKEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020-03-25 16:33:51 +08:00
- name: dingtalk
2020-03-25 20:14:21 +08:00
uses: satak/webrequest-action@master
2020-03-25 16:33:51 +08:00
with:
url: ${{ secrets.dingtalk_webhook }}
method: POST
2020-03-25 20:15:38 +08:00
payload: '{"msgtype": "text", "text": {"content": "Doric version ${{env.GITHUB_REF}} released."}}'
2020-03-25 16:33:51 +08:00
headers: '{"Content-Type": "application/json"}'