Skip to content

Commit d2a9b88

Browse files
committed
Fix installing gpr
1 parent f2f3902 commit d2a9b88

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build-workload.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141

4242
deploy:
43-
runs-on: ubuntu-latest
43+
runs-on: ubuntu-22.04
4444
needs: build
4545
if: ${{ github.ref == 'refs/heads/main' }}
4646
steps:
@@ -49,6 +49,14 @@ jobs:
4949
with:
5050
dotnet-version: 5.0.x
5151

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+
5260
- name: Install Github Package Registry Tool
5361
run: dotnet tool install --global --no-cache gpr
5462

0 commit comments

Comments
 (0)