We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4730b03 commit ed635a2Copy full SHA for ed635a2
.github/workflows/dotnet.yml
@@ -20,20 +20,22 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
with:
23
- token: ${{ secrets.DOCKER_UPLOAD }}
24
fetch-depth: 0
25
submodules: true
26
27
- - name: Set up .NET 8.0
+ - name: Set up .NET 9
28
uses: actions/setup-dotnet@v4
29
30
- dotnet-version: '8.x'
+ dotnet-version: '9.x'
31
32
- name: Restore dependencies
33
- run: dotnet restore "ModelCompiler.slnx"
+ run: dotnet restore "ModelCompiler.sln"
34
35
- name: Build
36
- run: dotnet build --no-restore --configuration Docker "ModelCompiler.slnx"
+ run: dotnet build --no-restore --configuration Docker "ModelCompiler.sln"
37
38
39
+
40
41
0 commit comments