From 520a6ed1f2cf825722e0bdf9117c162849278671 Mon Sep 17 00:00:00 2001 From: Ray Zimmerman Date: Mon, 19 Feb 2024 12:10:39 -0700 Subject: [PATCH] debug 2 --- .github/workflows/ci.yml | 2 +- action.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fc9f28..5f38912 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-12, macos-13, macos-14, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest] + os: [macos-12, macos-13, macos-latest, ubuntu-20.04, ubuntu-22.04, ubuntu-latest] runs-on: ${{ matrix.os }} diff --git a/action.yml b/action.yml index 628281c..b3e7ff1 100644 --- a/action.yml +++ b/action.yml @@ -33,8 +33,8 @@ runs: steps: - name: Get run-matlab-command run: | - ${{ runner.os == 'ubuntu' }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/glnxa64/run-matlab-command - ${{ runner.os == 'macos' }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/maca64/run-matlab-command + ${{ startsWith(runner.os, 'ubuntu') }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/glnxa64/run-matlab-command + ${{ startsWith(runner.os, 'macos') }} && wget -O /usr/local/bin/run-matlab-command https://ssd.mathworks.com/supportfiles/ci/run-matlab-command/v2/maca64/run-matlab-command chmod +x /usr/local/bin/run-matlab-command shell: bash - name: Configure MATLAB