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 341afe4 commit c722381Copy full SHA for c722381
.github/actions/build-dotnet.yml
.github/workflows/dotnet.yml
@@ -16,10 +16,8 @@ jobs:
16
uses: actions/setup-dotnet@v4
17
with:
18
dotnet-version: 9.x
19
- - name: Restore
20
- run: dotnet restore ./src/**/*.csproj
21
- name: Build
22
- run: dotnet build ./src/**/*.csproj --no-restore --configuration Release
+ run: dotnet build ./src/**/*.csproj --configuration Release
23
- name: Upload
24
uses: actions/upload-artifact@v4
25
@@ -64,7 +62,7 @@ jobs:
64
62
- name: Display structure of downloaded files
65
63
run: ls -R
66
- name: Pack
67
- run: dotnet pack ./src/**/*.csproj --no-build --configuration Release
+ run: dotnet pack ./src/**/*.csproj --configuration Release
68
69
70
0 commit comments