Skip to content

Commit

Permalink
Fix YAML syntax error for vcpkg projects' CI
Browse files Browse the repository at this point in the history
  • Loading branch information
friendlyanon committed May 20, 2022
1 parent 77282da commit d4a6712
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmake-init/templates/common/.github/workflows/ci.yml
Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Install vcpkg
uses: friendlyanon/setup-vcpkg@v1
with: { committish: ${{ env.VCPKG_COMMIT }} }{% end %}
with: { committish: "${{ env.VCPKG_COMMIT }}" }{% end %}

- name: Configure
run: cmake --preset=ci-coverage
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:

- name: Install vcpkg
uses: friendlyanon/setup-vcpkg@v1
with: { committish: ${{ env.VCPKG_COMMIT }} }{% end %}
with: { committish: "${{ env.VCPKG_COMMIT }}" }{% end %}

- name: Configure
env: { C{% if c %}C{% else %}XX{% end %}: clang{% if cpp %}++{% end %}-12{% if c and pm %}, CXX: clang++-12{% end %} }
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Install vcpkg
uses: friendlyanon/setup-vcpkg@v1
with: { committish: ${{ env.VCPKG_COMMIT }} }{% end %}
with: { committish: "${{ env.VCPKG_COMMIT }}" }{% end %}

- name: Configure
shell: pwsh
Expand Down

0 comments on commit d4a6712

Please sign in to comment.