From 410eae2b4045b1073d8ba40cc96177e3d78e8d55 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Mon, 28 Aug 2023 21:03:28 +0800 Subject: [PATCH] fix(workflows): remove NOCODB_GUI_PKG_NAME --- .github/workflows/release-docker.yml | 6 ++---- .github/workflows/release-npm.yml | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index 652b5ff45d..efac03f6ff 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -91,17 +91,15 @@ jobs: run: | export NODE_OPTIONS="--max_old_space_size=16384" NOCODB_SDK_PKG_NAME=nocodb-sdk - NOCODB_GUI_PKG_NAME=nc-gui if [[ "${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }}" ]]; then NOCODB_SDK_PKG_NAME=nocodb-sdk-daily - NOCODB_GUI_PKG_NAME=nc-gui-daily fi targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js && pnpm --filter=${NOCODB_SDK_PKG_NAME} install --ignore-scripts --no-frozen-lockfile && pnpm --filter=${NOCODB_SDK_PKG_NAME} run build && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNocodbSdk.js && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNcGuiVersion.js && - pnpm --filter=${NOCODB_GUI_PKG_NAME} install --ignore-scripts --no-frozen-lockfile && - targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} pnpm --filter=${NOCODB_GUI_PKG_NAME} run build:copy && + pnpm --filter=nc-gui install --ignore-scripts --no-frozen-lockfile && + targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} pnpm --filter=nc-gui run build:copy && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNcGui.js - name: Build nocodb and docker files diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index ae2700047e..fff4f57678 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -55,18 +55,16 @@ jobs: - run: | export NODE_OPTIONS="--max_old_space_size=16384" NOCODB_SDK_PKG_NAME=nocodb-sdk - NOCODB_GUI_PKG_NAME=nc-gui if [[ "${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }}" ]]; then NOCODB_SDK_PKG_NAME=nocodb-sdk-daily - NOCODB_GUI_PKG_NAME=nc-gui-daily fi targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNocodbSdkVersion.js && pnpm --filter=${NOCODB_SDK_PKG_NAME} install --ignore-scripts --no-frozen-lockfile && pnpm --filter=${NOCODB_SDK_PKG_NAME} run build && pnpm --filter=${NOCODB_SDK_PKG_NAME} publish --no-git-checks && sleep 90 && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNocodbSdk.js && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} node scripts/bumpNcGuiVersion.js && - pnpm --filter=${NOCODB_GUI_PKG_NAME} install --ignore-scripts --no-frozen-lockfile && - targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} pnpm --filter=${NOCODB_GUI_PKG_NAME} run build:copy:publish --no-git-checks && + pnpm --filter=nc-gui install --ignore-scripts --no-frozen-lockfile && + targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} targetVersion=${{ github.event.inputs.tag || inputs.tag }} pnpm --filter=nc-gui run build:copy:publish --no-git-checks && sleep 90 && targetEnv=${{ github.event.inputs.targetEnv || inputs.targetEnv }} node scripts/upgradeNcGui.js && cd packages/nocodb && pnpm run obfuscate:build:publish --no-git-checks env: