Skip to content

Commit 9149b2a

Browse files
author
Jose A. Fernandez
committed
Fix error on Github Action "No usable version of libssl was found" with Install OpenSSL (Ubuntu only)
1 parent 3bbbef0 commit 9149b2a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/.github/workflows/dotnet-core.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
test-framework: 'net481'
2727
steps:
2828
- uses: actions/checkout@v2
29+
- name: Install OpenSSL (Ubuntu only)
30+
if: runner.os == 'Linux'
31+
run: sudo apt-get update && sudo apt-get install -y libssl-dev
2932
- name: Setup .NET
3033
uses: actions/setup-dotnet@v3
3134
with:

0 commit comments

Comments
 (0)