* .github/workflows/windows-cmake.yml: Use single line syntax.


git-svn-id: https://svn.apache.org/repos/asf/serf/trunk@1909283 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/.github/workflows/windows-cmake.yml b/.github/workflows/windows-cmake.yml
index 414fdf3..befc0cf 100644
--- a/.github/workflows/windows-cmake.yml
+++ b/.github/workflows/windows-cmake.yml
@@ -30,13 +30,7 @@
       - uses: actions/checkout@v3
 
       - name: Configure CMake
-        run: |
-            cmake \
-            -B ${{github.workspace}}/build \
-            -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} \
-            -G "${{ matrix.generator }}" \
-            -A ${{ matrix.arch }} \
-            -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
+        run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -G "${{ matrix.generator }}" -A ${{ matrix.arch }} -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
 
       - name: Build
         run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build-type }}