mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-31 09:08:41 +08:00
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: Publish
|
|
|
|
on:
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: checkout
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- name: install
|
|
run: yarn install --check-files --frozen-lockfile
|
|
- name: lint
|
|
run: yarn lint
|
|
- name: lint
|
|
run: yarn test
|
|
- name: build
|
|
run: yarn build
|
|
publish:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: checkout
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
registry-url: https://registry.npmjs.org/
|
|
- name: install
|
|
run: yarn install --check-files --frozen-lockfile
|
|
- name: set dist-tag
|
|
run: |
|
|
case "${{github.event.release.name}}" in
|
|
*"rc"* | *"canary"*)
|
|
echo "r_tag=canary" >> $GITHUB_ENV;;
|
|
*"dev"*)
|
|
echo "r_tag=dev" >> $GITHUB_ENV;;
|
|
*"beta"*)
|
|
echo "r_tag=beta" >> $GITHUB_ENV;;
|
|
*)
|
|
echo "r_tag=latest" >> $GITHUB_ENV;;
|
|
esac
|
|
- name: publish
|
|
run: |
|
|
echo ">> dist-tag: ${{ env.r_tag }}"
|
|
yarn release --tag ${{ env.r_tag }}
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|