From a6094297faf9984cc63fe3350adbbbc48b4cff09 Mon Sep 17 00:00:00 2001 From: Aleksandr Kovalko Date: Sat, 9 May 2026 00:01:08 +0200 Subject: [PATCH] Fix invalid YAML in vcpkg install step The inline form `run: "$VCPKG_INSTALLATION_ROOT/vcpkg" install geo-utils-cpp` is rejected by the YAML parser: after the closing double quote the rest of the line is unexpected content. Switched to a literal block scalar so bash sees the full command intact. --- .github/workflows/vcpkg.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vcpkg.yml b/.github/workflows/vcpkg.yml index 7c72226..acd275f 100644 --- a/.github/workflows/vcpkg.yml +++ b/.github/workflows/vcpkg.yml @@ -67,7 +67,8 @@ jobs: git -C "$VCPKG_INSTALLATION_ROOT" reset --hard FETCH_HEAD - name: Install geo-utils-cpp via vcpkg - run: "$VCPKG_INSTALLATION_ROOT/vcpkg" install geo-utils-cpp + run: | + "$VCPKG_INSTALLATION_ROOT/vcpkg" install geo-utils-cpp - name: Configure consumer with vcpkg toolchain run: |