refactor(monorepo): migrate plugins release workflow (#17827)

This commit is contained in:
Yongjie Zhao 2021-12-20 21:58:10 +08:00 committed by GitHub
parent 01991044f3
commit 8fe2f5ffff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -55,9 +55,9 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build packages
run: npm run build
run: npm run plugins:build
- name: Run unit tests
run: npm run test
run: npm run test -- plugins packages
- name: Configure npm and git
run: |
@ -75,7 +75,7 @@ jobs:
- name: Bump version and publish package(s)
run: |
git tag -d `git tag | grep -E '^trigger-'`
npm run ci:release-from-tag
npm run plugins:release-from-tag
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}