From 95060e993dc959cbbaff64fc4d628c3d96f472af Mon Sep 17 00:00:00 2001 From: Yongjie Zhao Date: Mon, 20 Dec 2021 21:58:10 +0800 Subject: [PATCH] refactor(monorepo): migrate plugins release workflow (#17827) --- .../superset-ui/.github => .github}/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename {superset-frontend/temporary_superset_ui/superset-ui/.github => .github}/workflows/release.yml (95%) 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 933e34c8e09fd..ebaaa4d19c692 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 }}