We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7820c23 commit be4d8faCopy full SHA for be4d8fa
working/templates/SharedItems/.github/workflows/basic.yml
@@ -19,7 +19,7 @@ on:
19
20
jobs:
21
build:
22
- runs-on: ubuntu-22.04 # Mono is not installed on ubuntu-latest
+ runs-on: ubuntu-latest
23
steps:
24
- uses: actions/checkout@v4
25
@@ -34,7 +34,17 @@ jobs:
34
repo_url="https://github.com/${{ github.repository }}/settings/secrets/actions"
35
echo "Then set a DATAMINER_TOKEN secret in your repository settings: $repo_url"
36
exit 1
37
- fi
+ fi
38
+
39
+ - name: Setup .NET Core
40
+ uses: actions/setup-dotnet@v4
41
+ with:
42
+ dotnet-version: '8.0.x'
43
44
+ - name: Install Mono
45
+ run: |
46
+ sudo apt update
47
+ sudo apt install -y mono-complete
48
49
- name: Authenticate with GitHub CLI
50
run: gh auth login --with-token <<< "${{ secrets.GITHUB_TOKEN }}"
0 commit comments