From 2d824f51ad1f48e32f91bf8ca90e500142f16ed1 Mon Sep 17 00:00:00 2001 From: npty Date: Wed, 21 Aug 2024 18:09:40 +0700 Subject: [PATCH] chore: fix var not resolved correctly --- .github/workflows/test-sui.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-sui.yaml b/.github/workflows/test-sui.yaml index 2d818ed1..343c7b4d 100644 --- a/.github/workflows/test-sui.yaml +++ b/.github/workflows/test-sui.yaml @@ -58,7 +58,7 @@ jobs: # Create .env file with default hardhat private key that's prefunded - name: Prepare .env run: | - echo 'PRIVATE_KEY=$SUI_PRIVATE_KEY' >> .env + echo "PRIVATE_KEY=$SUI_PRIVATE_KEY" >> .env echo 'ENV=local' >> .env echo 'SKIP_EXISTING = true' >> .env