From 1d9f9028f46169db3a45ec193495bd5cc05693b7 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 14 Aug 2024 17:29:12 +0530 Subject: [PATCH 1/2] chore: skip sdk and lib-gui publish from action (TEMP) Signed-off-by: Pranav C --- .github/workflows/release-npm.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 1ff752d7eb..356f94fa0d 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -61,12 +61,13 @@ jobs: 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 --ignore-workspace && pnpm --filter=${NOCODB_SDK_PKG_NAME} run build && pnpm --filter=nc-plugin install && pnpm --filter=nc-plugin build && pnpm --filter=${NOCODB_SDK_PKG_NAME} publish --no-git-checks && + # pnpm --filter=${NOCODB_SDK_PKG_NAME} install --ignore-scripts --no-frozen-lockfile --ignore-workspace && pnpm --filter=${NOCODB_SDK_PKG_NAME} run build && pnpm --filter=nc-plugin install && pnpm --filter=nc-plugin build && pnpm --filter=${NOCODB_SDK_PKG_NAME} publish --no-git-checks && + pnpm --filter=nc-plugin install && pnpm --filter=nc-plugin build && 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=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 && + # 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: From c9b776d82c2d8d49c0ab510ae3e92190fa803a6c Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 14 Aug 2024 17:33:31 +0530 Subject: [PATCH 2/2] chore: lint Signed-off-by: Pranav C --- .../components/project/AccessSettings.vue | 2 +- packages/nocodb-sdk/src/lib/Api.ts | 128 +++++++++++++++++- 2 files changed, 122 insertions(+), 8 deletions(-) diff --git a/packages/nc-gui/components/project/AccessSettings.vue b/packages/nc-gui/components/project/AccessSettings.vue index 41b5adacbd..d338292f2f 100644 --- a/packages/nc-gui/components/project/AccessSettings.vue +++ b/packages/nc-gui/components/project/AccessSettings.vue @@ -373,7 +373,7 @@ const isDeleteOrUpdateAllowed = (user) => {
-