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 f2f3902 commit d2a9b88Copy full SHA for d2a9b88
.github/workflows/build-workload.yml
@@ -40,7 +40,7 @@ jobs:
40
41
42
deploy:
43
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
44
needs: build
45
if: ${{ github.ref == 'refs/heads/main' }}
46
steps:
@@ -49,6 +49,14 @@ jobs:
49
with:
50
dotnet-version: 5.0.x
51
52
+ - name: Install libssl1.1
53
+ run: |
54
+ sudo apt-get update
55
+ sudo apt-get install -y wget
56
+ wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl1.1/libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb
57
+ sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.22_amd64.deb
58
+
59
60
- name: Install Github Package Registry Tool
61
run: dotnet tool install --global --no-cache gpr
62
0 commit comments