From c9e922f924395977c1cde98e1472c0ed1eacde81 Mon Sep 17 00:00:00 2001 From: Christian Beer Date: Thu, 24 Dec 2020 20:32:02 +0100 Subject: [PATCH] [CI] fix boolean variables The previous CI system (Appveyor) used `True` and `False` but the new one (Github Actions) uses `true` and `false`. --- deploy/deploy_to_bintray.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/deploy_to_bintray.bat b/deploy/deploy_to_bintray.bat index d7834ebba41..2ca96bb2151 100644 --- a/deploy/deploy_to_bintray.bat +++ b/deploy/deploy_to_bintray.bat @@ -10,11 +10,11 @@ set git_rev=%GITHUB_SHA:~0,8% set pkg_version=custom_%build_date%_!git_rev! set pkg_version_desc=Custom build created on %build_date% if not defined GITHUB_ACTIONS ( - set GITHUB_ACTIONS=False + set GITHUB_ACTIONS=false ) set CI_RUN=%GITHUB_ACTIONS% -if "%CI_RUN%" == "True" ( +if "%CI_RUN%" == "true" ( if "%GITHUB_EVENT_NAME%" == "pull_request" ( set pkg_name=pull-requests set git_rev=%PULL_REQUEST_SHA:~0,8%