Skip to content

Commit d9b591a

Browse files
committed
fix quoting
1 parent 04ce9e5 commit d9b591a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/conan-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
wget \
109109
110110
- name: Install cmake (jammy)
111-
if: matrix.image == ubuntu:22.04
111+
if: matrix.image == 'ubuntu:22.04'
112112
run: |
113113
sudo wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | sudo gpg --dearmor - | sudo tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null
114114
sudo echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ jammy main' | sudo tee /etc/apt/sources.list.d/kitware.list >/dev/null
@@ -117,7 +117,7 @@ jobs:
117117
apt-get -y install cmake=3.25.2-0kitware1ubuntu22.04.1 cmake-data=3.25.2-0kitware1ubuntu22.04.1
118118
119119
- name: Install cmake (bookworm)
120-
if: matrix.image == debian:bookworm
120+
if: matrix.image == 'debian:bookworm'
121121
run: DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install cmake
122122

123123
- name: Set up python/conan

0 commit comments

Comments
 (0)