We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 859554e commit 3d058a1Copy full SHA for 3d058a1
1 file changed
.github/workflows/build.yml
@@ -24,6 +24,13 @@ jobs:
24
with:
25
fetch-depth: 0
26
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
+
34
- name: Setup .NET
35
uses: actions/setup-dotnet@v4
36
0 commit comments