From 02c20f833f7445e14358a68210bdb164d7549ef2 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 11 Oct 2023 16:30:04 +0530 Subject: [PATCH] chore: add missing export in action Signed-off-by: Pranav C --- .github/workflows/release-npm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 &&