From 9d32c0acc87c839b4525b4b90ba3b44b68471ba6 Mon Sep 17 00:00:00 2001 From: Keith Date: Mon, 12 Aug 2024 13:34:54 +0900 Subject: [PATCH] fix: remove CRs when inject environment variables Inject environment variables with `CR` makes the key mismatched. --- .github/workflows/package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 10200e7eb..126b54494 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -106,7 +106,7 @@ jobs: # Inject LOG_ENCRYPTION_PUBLIC_KEY to encrypt sensitive log - name: Inject environment variables run: | - echo "\nLOG_ENCRYPTION_PUBLIC_KEY=${{ secrets.LOG_ENCRYPTION_PUBLIC_KEY }}\n" >> packages/neuron-wallet/.env + echo "LOG_ENCRYPTION_PUBLIC_KEY=${{ secrets.LOG_ENCRYPTION_PUBLIC_KEY }}" >> packages/neuron-wallet/.env - name: Package for MacOS if: matrix.os == 'macos-latest'