From 89303ce0006ebdb95b254aad8dfd4a6ae3e51643 Mon Sep 17 00:00:00 2001
From: Taras Smakula <tarassmakula@gmail.com>
Date: Tue, 10 Oct 2023 13:59:52 +0300
Subject: [PATCH] Fix variable reference

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1f553344e..e23d6cd18 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,7 +8,7 @@ cache:
 before_script:
   - bundle install
   - chmod +x ./gradlew
-  - echo -n ${$SIGNING_KEY_BASE64} | base64 -d > circuli_key.jks
+  - echo -n ${SIGNING_KEY_BASE64} | base64 -d > circuli_key.jks
   - echo "KEY_PATH=../circuli_key.jks" > signing.properties
   - echo "KEY_PASSWORD=${KEY_PASSWORD}" >> signing.properties
   - echo "ALIAS_NAME=${ALIAS_NAME}" >> signing.properties
-- 
GitLab