diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 5e56158a70..5cd0482a53 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -56,7 +56,7 @@ jobs: export NODE_OPTIONS="--max_old_space_size=16384" 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 &&