From a4314f513f6e59a3368e51afb34c959229111e4e Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 11 Oct 2023 17:15:05 +0530 Subject: [PATCH 1/4] chore: component.d.ts Signed-off-by: Pranav C --- packages/nc-gui/components.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/nc-gui/components.d.ts b/packages/nc-gui/components.d.ts index 28575de95a..57affe1553 100644 --- a/packages/nc-gui/components.d.ts +++ b/packages/nc-gui/components.d.ts @@ -150,7 +150,6 @@ declare module '@vue/runtime-core' { MdiReload: typeof import('~icons/mdi/reload')['default'] MdiRocketLaunchOutline: typeof import('~icons/mdi/rocket-launch-outline')['default'] MdiScriptTextOutline: typeof import('~icons/mdi/script-text-outline')['default'] - MdiShieldKeyOutline: typeof import('~icons/mdi/shield-key-outline')['default'] MdiSlack: typeof import('~icons/mdi/slack')['default'] MdiStar: typeof import('~icons/mdi/star')['default'] MdiStarOutline: typeof import('~icons/mdi/star-outline')['default'] From 52f0d7849e056096d4c773592d36f95bbbf80e52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D5=A1=C9=A8=D5=BC=C9=A2=D3=84=D5=A1=D6=85=D5=BC=C9=A2?= Date: Wed, 11 Oct 2023 19:47:01 +0800 Subject: [PATCH 2/4] refactor(workflows): remove unnecessary if statement --- .github/workflows/release-docker.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index a6a8d9f0f1..ed6dc8ff15 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -90,10 +90,7 @@ jobs: if: ${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }} run: | export NODE_OPTIONS="--max_old_space_size=16384" - NOCODB_SDK_PKG_NAME=nocodb-sdk - if [[ ${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }} ]]; then - NOCODB_SDK_PKG_NAME=nocodb-sdk-daily - fi + NOCODB_SDK_PKG_NAME=nocodb-sdk-daily 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 && From 5f1e8aec18baede1bf923e81a1a34ead54cc3802 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 11 Oct 2023 17:26:53 +0530 Subject: [PATCH 3/4] chore: hardcode package name Signed-off-by: Pranav C --- .github/workflows/release-npm.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 0af45d3c3f..02bee376ce 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -54,13 +54,13 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: | export NODE_OPTIONS="--max_old_space_size=16384" - NOCODB_SDK_PKG_NAME=nocodb-sdk - if [[ ${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }} ]]; then - NOCODB_SDK_PKG_NAME=nocodb-sdk-daily - fi + # NOCODB_SDK_PKG_NAME=nocodb-sdk + # if [[ ${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }} ]]; then + # NOCODB_SDK_PKG_NAME=nocodb-sdk-daily + # fi echo $NOCODB_SDK_PKG_NAME 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 && + pnpm --filter=nocodb-sdk install --ignore-scripts --no-frozen-lockfile && pnpm --filter=nocodb-sdk run build && pnpm --filter=nocodb-sdk 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 && From fbf5c903a9a4c59f3c1b23a4cb29a542c5708363 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 11 Oct 2023 17:28:26 +0530 Subject: [PATCH 4/4] Revert "chore: component.d.ts" This reverts commit a4314f513f6e59a3368e51afb34c959229111e4e. --- packages/nc-gui/components.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/nc-gui/components.d.ts b/packages/nc-gui/components.d.ts index 57affe1553..28575de95a 100644 --- a/packages/nc-gui/components.d.ts +++ b/packages/nc-gui/components.d.ts @@ -150,6 +150,7 @@ declare module '@vue/runtime-core' { MdiReload: typeof import('~icons/mdi/reload')['default'] MdiRocketLaunchOutline: typeof import('~icons/mdi/rocket-launch-outline')['default'] MdiScriptTextOutline: typeof import('~icons/mdi/script-text-outline')['default'] + MdiShieldKeyOutline: typeof import('~icons/mdi/shield-key-outline')['default'] MdiSlack: typeof import('~icons/mdi/slack')['default'] MdiStar: typeof import('~icons/mdi/star')['default'] MdiStarOutline: typeof import('~icons/mdi/star-outline')['default']