We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bb78dc commit 7651598Copy full SHA for 7651598
.github/workflows/api-client.yml
@@ -28,6 +28,16 @@ jobs:
28
with:
29
fetch-depth: 0
30
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
38
+ apt-get install -y dotnet-sdk-8.0
39
+ dotnet --info
40
+
41
- name: Setup pnpm
42
run: |
43
corepack enable
0 commit comments