Skip to content

Commit

Permalink
fix(actions/setup): container -> os
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed May 23, 2024
1 parent 46db1d7 commit 3656d7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ 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
uses: ilammy/msvc-dev-cmd@v1

- 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

0 comments on commit 3656d7b

Please sign in to comment.