Skip to content

Commit

Permalink
tcl setup required on any Ubuntu, not just latest
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
garfieldnate committed May 17, 2024
1 parent 00abbae commit 0c644c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0c644c3

Please sign in to comment.