We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 535dc74 commit 150c140Copy full SHA for 150c140
.github/workflows/ci.yml
@@ -23,12 +23,11 @@ jobs:
23
run: dotnet restore
24
25
- name: Build
26
- run: dotnet build --no-restore --configuration Release
+ run: dotnet build --configuration Release
27
28
- name: Test
29
run: >-
30
dotnet test
31
- --no-restore
32
--no-build
33
--configuration Release
34
--logger "console;verbosity=normal"
.github/workflows/release.yml
@@ -21,7 +21,7 @@ jobs:
21
22
- name: Publish
- run: dotnet publish --no-restore --configuration Release --artifacts-path ./artifacts
+ run: dotnet publish --configuration Release --artifacts-path ./artifacts
- name: Upload build artifacts
if: always()
0 commit comments