Skip to content

Commit 6e06a04

Browse files
Fix Conan CI: matrix shared value must be capitalized
GitHub Actions stringifies YAML booleans as lowercase true/false in ${{ }} interpolation, but Conan's shared option only accepts True/False.
1 parent 70108b3 commit 6e06a04

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/conan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
shared: [false, true]
21+
shared: ["False", "True"]
2222

2323
runs-on: ${{ matrix.os }}
2424
steps:

0 commit comments

Comments
 (0)