From 8a6720a006be6cc7b5528fe2a2d81ce2ee6d9537 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sat, 6 Feb 2021 13:59:58 +0300 Subject: [PATCH] Fixed check for the runner on Mac OS. --- .github/actions/setup-lisp/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-lisp/action.yml b/.github/actions/setup-lisp/action.yml index 9427939..4f1fa57 100644 --- a/.github/actions/setup-lisp/action.yml +++ b/.github/actions/setup-lisp/action.yml @@ -28,7 +28,7 @@ runs: if [[ "$RUNNER_OS" == "Linux" ]]; then sudo apt-get -y install git build-essential automake libcurl4-openssl-dev fi - if [[ "$OS" == "macos-latest" ]]; then + if [[ "$RUNNER_OS" == "macOS" ]]; then brew install automake autoconf curl fi