From 0c644c3f630bdf2aa8a53d02cba84081e9d05447 Mon Sep 17 00:00:00 2001 From: Nathan Glenn Date: Fri, 17 May 2024 18:39:58 -0500 Subject: [PATCH] tcl setup required on any Ubuntu, not just latest Build failed because Tcl was not installed on Ubuntu. Since we're using the "ubuntu-24.04" string for now, we need to match on a prefix instead of the exact value. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4d6b39371..69cd5ac2ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,7 @@ jobs: dotnet-version: '6.0.X' - name: Setup tcl (ubuntu) - if: matrix.os == 'ubuntu-latest' + if: startsWith(matrix.os, 'ubuntu-') run: sudo apt-get update && sudo apt-get install tcl-dev - name: Setup tcl (macos-latest)