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

59 lines
2.0 KiB
YAML
Raw Normal View History

2020-03-25 16:04:22 +08:00
name: Release
2020-09-02 18:07:48 +08:00
on:
2020-03-25 16:41:21 +08:00
release:
2021-01-28 14:34:20 +08:00
types: [published]
2020-03-24 17:20:39 +08:00
jobs:
build:
runs-on: macos-latest
steps:
2020-09-02 18:07:48 +08:00
- uses: actions/checkout@v1
- name: setup JDK 1.8
uses: actions/setup-java@v1
with:
2020-03-24 18:17:58 +08:00
java-version: 1.8
2020-09-02 18:07:48 +08:00
- uses: actions/setup-node@v1
with:
2020-03-24 17:20:39 +08:00
node-version: 10
2020-09-02 18:07:48 +08:00
registry-url: "https://registry.npmjs.org"
- 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
- name: Setup
run: sh setup.sh
- name: Install Cocoapods
run: |
gem install cocoapods
- name: Echo current Version
run: |
echo ${GITHUB_REF:11}>version
echo "Current Version is "${GITHUB_REF:11}
- name: Publish
run: |
sh publish.sh
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
BINTARY_USER: ${{ secrets.BINTARY_USER }}
BINTARY_REPO: ${{ secrets.BINTARY_REPO }}
BINTARY_APIKEY: ${{ secrets.BINTARY_APIKEY }}
# - 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 }}
- name: dingtalk
uses: satak/webrequest-action@master
with:
url: ${{ secrets.dingtalk_webhook }}
method: POST
payload: '{"msgtype": "text", "text": {"content": "Doric version ${{env.GITHUB_REF}} released."}}'
headers: '{"Content-Type": "application/json"}'