From a8b30ad9f690a2bff29a4ae82eef64ea4f3aa0ff Mon Sep 17 00:00:00 2001 From: Curve Date: Thu, 23 May 2024 21:31:42 +0200 Subject: [PATCH] fix(actions/setup): `container` -> `os` --- .github/actions/setup/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index cb48d59f..bd4ad42d 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -12,7 +12,7 @@ runs: steps: - name: 🩹 Enable Long Paths shell: bash - if: ${{ inputs.container == 'windows-latest' }} + if: ${{ inputs.os == 'windows-latest' }} run: git config --system core.longpaths true - name: 🖥️ Enable MSVC Dev Console @@ -20,7 +20,7 @@ runs: - name: 📋 Install OpenMP shell: bash - if: ${{ inputs.container == 'macos-latest' }} + if: ${{ inputs.os == 'macos-latest' }} run: | brew reinstall --build-from-source --formula ./.github/homebrew/libomp.rb echo "OpenMP_ROOT=$(brew --prefix)/opt/libomp" >> $GITHUB_ENV