2020-12-23 15:14:48 +08:00
|
|
|
name: Publish to NPM registry
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [created]
|
|
|
|
|
|
|
|
jobs:
|
2020-12-27 14:16:18 +08:00
|
|
|
test:
|
2020-12-23 15:14:48 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-07 10:52:16 +08:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-01 14:17:16 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Add dev branch
|
|
|
|
run: git branch dev origin/dev
|
2020-12-23 15:14:48 +08:00
|
|
|
- name: Setup node
|
2022-02-25 20:05:11 +08:00
|
|
|
uses: actions/setup-node@v3
|
2020-12-23 21:44:51 +08:00
|
|
|
with:
|
2021-09-27 12:16:49 +08:00
|
|
|
node-version: '16'
|
2021-09-23 08:12:37 +08:00
|
|
|
- name: Setup pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
with:
|
2022-05-03 14:27:10 +08:00
|
|
|
version: 7
|
2022-02-21 16:11:17 +08:00
|
|
|
|
|
|
|
- name: Cache ~/.pnpm-store
|
2022-03-30 02:30:13 +08:00
|
|
|
uses: actions/cache@v3
|
2022-02-21 16:11:17 +08:00
|
|
|
env:
|
|
|
|
cache-name: cache-pnpm-store
|
|
|
|
with:
|
|
|
|
path: ~/.pnpm-store
|
|
|
|
key: ${{ runner.os }}-publish-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-publish-${{ env.cache-name }}-
|
|
|
|
${{ runner.os }}-publish-
|
|
|
|
${{ runner.os }}-
|
|
|
|
|
2020-12-23 15:14:48 +08:00
|
|
|
- name: Install dependencies
|
2021-10-16 20:58:41 +08:00
|
|
|
run: pnpm i --frozen-lockfile
|
2020-12-23 15:14:48 +08:00
|
|
|
- name: Lint
|
2021-09-23 08:12:37 +08:00
|
|
|
run: pnpm lint
|
2020-12-23 15:14:48 +08:00
|
|
|
- name: Test
|
2021-09-23 08:12:37 +08:00
|
|
|
run: pnpm test
|
2020-12-23 15:14:48 +08:00
|
|
|
|
2020-12-27 14:16:18 +08:00
|
|
|
publish:
|
|
|
|
needs: test
|
2020-12-23 15:14:48 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-07 10:52:16 +08:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-25 20:05:11 +08:00
|
|
|
- uses: actions/setup-node@v3
|
2020-12-23 15:14:48 +08:00
|
|
|
with:
|
2021-09-27 12:16:49 +08:00
|
|
|
node-version: '16'
|
2020-12-24 01:15:35 +08:00
|
|
|
registry-url: https://registry.npmjs.com/
|
2021-09-23 08:12:37 +08:00
|
|
|
- name: Setup pnpm
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
with:
|
2022-05-03 14:27:10 +08:00
|
|
|
version: 7
|
2020-12-23 15:59:58 +08:00
|
|
|
- name: Get version
|
|
|
|
run: echo "TAG_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
2021-08-24 16:31:30 +08:00
|
|
|
- name: Get git head
|
|
|
|
run: echo "GIT_HEAD=${GITHUB_SHA}" >> $GITHUB_ENV
|
|
|
|
- name: Gen npmrc
|
2021-09-23 08:12:37 +08:00
|
|
|
run: echo "//registry.npmjs.com/:_authToken=${{ secrets.NPM_PUBLISH_TOKEN }}" >> ./.npmrc
|
2021-08-24 16:31:30 +08:00
|
|
|
- name: Build&publish
|
2021-09-15 01:45:45 +08:00
|
|
|
run: sh ./scripts/publish.sh
|
2020-12-23 15:59:58 +08:00
|
|
|
env:
|
2020-12-23 21:44:51 +08:00
|
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
|
2020-12-23 15:59:58 +08:00
|
|
|
TAG_VERSION: ${{env.TAG_VERSION}}
|
2021-08-24 13:36:48 +08:00
|
|
|
GIT_HEAD: ${{env.GIT_HEAD}}
|
2020-12-23 23:15:59 +08:00
|
|
|
REGISTRY: https://registry.npmjs.com/
|
2022-01-17 17:44:29 +08:00
|
|
|
FORCE_COLOR: 2
|
2022-04-09 04:32:01 +08:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|