Skip to content

Commit 7651598

Browse files
committed
🐛 install dotnet
1 parent 8bb78dc commit 7651598

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/api-client.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@ jobs:
2828
with:
2929
fetch-depth: 0
3030

31+
- name: Install .NET SDK
32+
run: |
33+
apt-get update
34+
apt-get install -y wget apt-transport-https
35+
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
36+
dpkg -i packages-microsoft-prod.deb
37+
apt-get update
38+
apt-get install -y dotnet-sdk-8.0
39+
dotnet --info
40+
3141
- name: Setup pnpm
3242
run: |
3343
corepack enable

0 commit comments

Comments
 (0)