Skip to content

Commit 32569ba

Browse files
committed
fix(ci): install OpenSSL
1 parent c3f4614 commit 32569ba

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/wyam.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
12+
env:
13+
# Necessary for installing OpenSSL 1.1
14+
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
1315
steps:
1416
- name: Checkout
1517
uses: actions/checkout@v3
@@ -21,6 +23,10 @@ jobs:
2123
dotnet-version: |
2224
2.1.818
2325
6.0.x
26+
- name: Install OpenSSL 1.1
27+
run: |
28+
wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.24_amd64.deb
29+
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.24_amd64.deb
2430
- name: Run the Cake script
2531
uses: cake-build/cake-action@v1
2632
with:

0 commit comments

Comments
 (0)