[client] ci: correctly set CMAKE_BUILD_TYPE

A $ sign is needed for GitHub Actions to interpolate the variable.
This commit is contained in:
Quantum 2021-03-07 20:48:38 -05:00 committed by Geoffrey McRae
parent ba3243f88a
commit 52a445e2f5

View File

@ -30,7 +30,7 @@ jobs:
run: |
mkdir client/build
cd client/build
cmake -DCMAKE_BUILD_TYPE={{ matrix.build_type }} -DENABLE_SDL=ON ..
cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_SDL=ON ..
- name: Build client
run: |
cd client/build