We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f4614 commit 32569baCopy full SHA for 32569ba
.github/workflows/wyam.yml
@@ -9,7 +9,9 @@ on:
9
jobs:
10
build:
11
runs-on: ubuntu-latest
12
-
+ env:
13
+ # Necessary for installing OpenSSL 1.1
14
+ DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v3
@@ -21,6 +23,10 @@ jobs:
21
23
dotnet-version: |
22
24
2.1.818
25
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
30
- name: Run the Cake script
31
uses: cake-build/cake-action@v1
32
with:
0 commit comments