diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index fff4f57678..5cd0482a53 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -54,9 +54,9 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: | export NODE_OPTIONS="--max_old_space_size=16384" - NOCODB_SDK_PKG_NAME=nocodb-sdk + export NOCODB_SDK_PKG_NAME=nocodb-sdk if [[ "${{ github.event.inputs.targetEnv == 'DEV' || inputs.targetEnv == 'DEV' }}" ]]; then - NOCODB_SDK_PKG_NAME=nocodb-sdk-daily + export NOCODB_SDK_PKG_NAME=nocodb-sdk-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 &&