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 }}