We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22e4a4d commit 04476ddCopy full SHA for 04476dd
1 file changed
.github/workflows/release.yml
@@ -88,9 +88,13 @@ jobs:
88
env:
89
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
90
91
+ - name: Build
92
+ if: steps.check.outputs.need_release == 'true'
93
+ run: dotnet build --configuration Release
94
+
95
- name: Pack NuGet packages
96
if: steps.check.outputs.need_release == 'true'
- run: dotnet pack --configuration Release --output ./artifacts
97
+ run: dotnet pack --configuration Release --no-build --output ./artifacts
98
99
- name: Publish to NuGet
100
0 commit comments