From 7794298495fdb3b78713777c62a48dd26fe04cff Mon Sep 17 00:00:00 2001 From: ilya-fedin Date: Wed, 16 Feb 2022 02:18:40 +0000 Subject: [PATCH] Fix auto-caching in Linux action (#312) --- .github/workflows/linux-kotato.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-kotato.yml b/.github/workflows/linux-kotato.yml index 174fee3ff..b9afc9f1a 100644 --- a/.github/workflows/linux-kotato.yml +++ b/.github/workflows/linux-kotato.yml @@ -132,7 +132,7 @@ jobs: gcc --version > CACHE_KEY.txt echo $MANUAL_CACHING >> CACHE_KEY.txt - if [ "$AUTO_CACHING" == "1" ]; then + if [ "$AUTO_CACHING" = "1" ]; then thisFile=$REPO_NAME/.github/workflows/linux-kotato.yml echo `md5sum $thisFile | cut -c -32` >> CACHE_KEY.txt fi