From 19c8bb8d446d285c34ed521b3fa5e57dab705bba Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Wed, 22 Oct 2025 12:50:05 +0200 Subject: [PATCH] add export --- .github/workflows/test_dlt_connector.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test_dlt_connector.yml b/.github/workflows/test_dlt_connector.yml index bfde9cc8b..3ba43063f 100644 --- a/.github/workflows/test_dlt_connector.yml +++ b/.github/workflows/test_dlt_connector.yml @@ -62,9 +62,10 @@ jobs: - name: typecheck && unit test run: | - GRADIDO_BLOCKCHAIN_CRYPTO_APP_SECRET=$(openssl rand -hex 16) - GRADIDO_BLOCKCHAIN_SERVER_CRYPTO_KEY=$(openssl rand -hex 16) - HOME_COMMUNITY_SEED=$(openssl rand -hex 32) - HIERO_OPERATOR_KEY=$(openssl rand -hex 32) - HIERO_OPERATOR_ID="0.0.2" - cd dlt-connector && bun typecheck && bun test + export GRADIDO_BLOCKCHAIN_CRYPTO_APP_SECRET=$(openssl rand -hex 16) + export GRADIDO_BLOCKCHAIN_SERVER_CRYPTO_KEY=$(openssl rand -hex 16) + export HOME_COMMUNITY_SEED=$(openssl rand -hex 32) + export HIERO_OPERATOR_KEY=$(openssl rand -hex 32) + export HIERO_OPERATOR_ID="0.0.2" + cd dlt-connector && bun typecheck && bun test +