We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39c6880 commit ac5e408Copy full SHA for ac5e408
.github/workflows/PublishNugetPackage.yml
@@ -22,6 +22,15 @@ jobs:
22
8.x
23
9.x
24
10.x
25
+ - name: Install Mono
26
+ run: |
27
+ sudo apt install ca-certificates gnupg
28
+ sudo gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
29
+ echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
30
+ sudo apt update
31
+ sudo apt install -y mono-complete
32
+ mono --version
33
+
34
- name: build
35
run: dotnet build -c Release
36
- name: test
0 commit comments