Skip to content

Commit

Permalink
Install OpenSSL for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
victor1234 committed Jan 19, 2025
1 parent 47b80f8 commit f54591f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/actions/build-package-cmake/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ inputs:
runs:
using: "composite"
steps:
- name: Detect OS and install OpenSSL
shell: bash
run: |
if [[ "${{ runner.os }}" == "Windows" ]]; then
choco install openssl -y
openssl version
fi
- name: Detect OS and set std::chrono flag
shell: bash
run: |
Expand Down

0 comments on commit f54591f

Please sign in to comment.