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 6186a6f commit cf2b133Copy full SHA for cf2b133
.github/workflows/dotnet.yml
@@ -26,8 +26,12 @@ jobs:
26
27
- name: Install Mono
28
run: |
29
- sudo apt update
30
- sudo apt install -y mono-complete
+ apt update
+ apt install -y ca-certificates gnupg
31
+ gpg --homedir /tmp --no-default-keyring --keyring /usr/share/keyrings/mono-official-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
32
+ echo "deb [signed-by=/usr/share/keyrings/mono-official-archive-keyring.gpg] https://download.mono-project.com/repo/ubuntu stable-focal main" | tee /etc/apt/sources.list.d/mono-official-stable.list
33
34
+ apt install -y mono-complete
35
36
- name: Cache NuGet packages
37
uses: actions/cache@v3
0 commit comments