Skip to content

Commit

Permalink
Using .cer extension instead of .crt
Browse files Browse the repository at this point in the history
Signed-off-by: Vedant <[email protected]>
  • Loading branch information
vrnimje committed Oct 20, 2023
1 parent 1661216 commit 43d45d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows_build_no_boost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:

- name: Get GitHub SSL certificate
run: |
echo "" | openssl s_client -servername github.com -connect github.com:443 2>NUL | openssl x509 > github.crt
echo "" | openssl s_client -servername github.com -connect github.com:443 2>NUL | openssl x509 > github.cer
- name: Add GitHub SSL certificate to trusted store
run: |
certutil -addstore -f "Root" github.crt
certutil -addstore -f "Root" github.cer
- name: Configure CMake
run: cmake -S . -B build "-DCMAKE_TOOLCHAIN_FILE=$env:VCPKG_INSTALLATION_ROOT\scripts\buildsystems\vcpkg.cmake" -DQUICK_FTXUI_FETCH_BOOST=ON
Expand Down

0 comments on commit 43d45d8

Please sign in to comment.