From: Maksym Sobolyev Date: Mon, 14 Jul 2025 18:17:01 +0000 (-0700) Subject: ci: Small GH actions cleanup (#1602) X-Git-Tag: v4.12~86 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cbf7caf151f0d50e8e6447b9028cdf657a8d6d08;p=thirdparty%2Fccache.git ci: Small GH actions cleanup (#1602) Remove superfluous ${{ }}. --- diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c2ae9cd3..6b85f66f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -75,7 +75,7 @@ jobs: version: "15.3" steps: - name: Install dependencies on Linux - if: ${{ runner.os == 'Linux' }} + if: runner.os == 'Linux' run: | sudo apt-get update @@ -134,7 +134,7 @@ jobs: echo "CMAKE_PARAMS=${cmake_params[*]}" >> $GITHUB_ENV - name: Install dependencies on macOS - if: ${{ runner.os == 'macOS' }} + if: runner.os == 'macOS' run: | HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 \ brew install ninja hiredis redis