You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yo...@apache.org on 2021/12/20 14:00:07 UTC

[superset] branch master updated: refactor(monorepo): migrate plugins release workflow (#17827)

This is an automated email from the ASF dual-hosted git repository.

yongjiezhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 8fe2f5f  refactor(monorepo): migrate plugins release workflow (#17827)
8fe2f5f is described below

commit 8fe2f5ffff49f8c913e7df529f23998965ba0193
Author: Yongjie Zhao <yo...@gmail.com>
AuthorDate: Mon Dec 20 21:58:10 2021 +0800

    refactor(monorepo): migrate plugins release workflow (#17827)
---
 .../superset-ui/.github => .github}/workflows/release.yml           | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/release.yml b/.github/workflows/release.yml
similarity index 95%
rename from superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/release.yml
rename to .github/workflows/release.yml
index 933e34c..ebaaa4d 100644
--- a/superset-frontend/temporary_superset_ui/superset-ui/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -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 }}