From 9b385cfb83b9ea39b6a59a3e43beaf89bc09806e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toni=20R=C3=B6yhy?= Date: Fri, 28 Jan 2022 16:46:10 +0200 Subject: [PATCH] fix circle confir deploy job --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a6777d7..5ad93f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,7 +33,7 @@ jobs: - run: name: Get deploy dir command: | - echo 'export DEPLOY_DIR=$( if [ "$CIRCLE_TAG" =~ "^v.*" ]; then echo "$CIRCLE_TAG"; else echo "${CIRCLE_SHA1:0:7}"; fi )' >> $BASH_ENV + echo 'export DEPLOY_DIR=$( if [[ "$CIRCLE_TAG" =~ "^v.*" ]]; then echo "$CIRCLE_TAG"; else echo "${CIRCLE_SHA1:0:7}"; fi )' >> $BASH_ENV cat $BASH_ENV - aws-s3/sync: