diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index f7fcdf34..47ae2dab 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -106,14 +106,15 @@ jobs: sudo apt update sudo apt-get install texlive texlive-latex-recommended texlive-extra-utils texlive-latex-extra texlive-font-utils # if: startsWith(matrix.config.os,'ubuntu-') - if: ${{ startsWith(matrix.config.os, 'ubuntu-') }} + if: ${{ startsWith(runner.os, 'ubuntu-') }} - name: Install LaTeX (MacOS) run: | brew update brew install --cask mactex; echo "/Library/TeX/texbin/" >> $GITHUB_PATH - if: matrix.config.os == 'macos-latest' + # if: matrix.config.os == 'macos-latest' + if: ${{ startsWith(runner.os, 'macos-') }} - name: Install LaTeX (Windows) uses: teatimeguest/setup-texlive-action@v3 @@ -124,7 +125,8 @@ jobs: babel-dutch cjk bibtex - if: matrix.config.os == 'windows-latest' + # if: matrix.config.os == 'windows-latest' + if: ${{ startsWith(runner.os, 'windows-') }} - name: Install Doxygen (Ubuntu) run: |