From 20504b50e42141021ac33c69b9b7e7fa820f1c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= Date: Wed, 26 Jan 2022 10:50:19 +0400 Subject: [PATCH] fix(ci): curl command Fix bad variable string concatenation in cURL command --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1412fa05..0ff38952 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -167,7 +167,7 @@ jobs: command: | curl -X POST https://api.github.com/repos/snyk/driftctl-docs/dispatches \ -d '{"event_type": "new_version"}' \ - -H 'Authorization: token $GITHUB_TOKEN' + -H "Authorization: token ${GITHUB_TOKEN}" update-lambda: environment: FUNCTION_NAME: driftctl-version