Przeglądaj źródła

fix(action): change exit code to 0 when ccache is not installed

TheWildJames 4 miesięcy temu
rodzic
commit
e7146ba6e2
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      .github/actions/cache-stats/action.yml

+ 1 - 1
.github/actions/cache-stats/action.yml

@@ -29,7 +29,7 @@ runs:
           echo "ccache is installed"
         else
           echo "ccache not installed, exiting"
-          exit 1
+          exit 0
         fi
         STATS="$(ccache -s)"