Skip to content

Commit 3d058a1

Browse files
authored
Add installation step for libssl1.1 in CI workflow (#277)
1 parent 859554e commit 3d058a1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
with:
2525
fetch-depth: 0
2626

27+
- name: Install libssl1.1
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install -y libssl1.1 || \
31+
(wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl1.1/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb && \
32+
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb)
33+
2734
- name: Setup .NET
2835
uses: actions/setup-dotnet@v4
2936
with:

0 commit comments

Comments
 (0)