chore: docker build - integration - sdk dependancy installation

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2025-06-13 18:26:01 +05:30
parent 4b56633a51
commit db9654e176

View File

@@ -102,7 +102,14 @@ jobs:
- name: Build nocodb integrations
working-directory: ${{ env.working-directory }}
run: |
cd ../..
cd ../nocodb-integrations/core
# extract nocodb-sdk or nocodbsdk-daily package name based on env
NOCODB_SDK_PKG_NAME=nocodb-sdk
if [[ ${{ github.event.inputs.targetEnv || inputs.targetEnv }} == 'DEV' ]]; then
NOCODB_SDK_PKG_NAME=nocodb-sdk-daily
fi
pnpm install ${NOCODB_SDK_PKG_NAME}@${{ github.event.inputs.tag || inputs.tag }}
cd ../../..
pnpm run integrations:build && pnpm run registerIntegrations
- name: Build nocodb and docker files