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