From c69e7d4f74088a3857d4978823bc2a8a12361d98 Mon Sep 17 00:00:00 2001 From: Franziska Wegner <57569315+franziska-wegner@users.noreply.github.com> Date: Tue, 5 Dec 2023 07:42:18 -0800 Subject: [PATCH] Update cmake-multi-platform.yml --- .github/workflows/cmake-multi-platform.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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: |