File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -166,16 +166,22 @@ jobs:
166166
167167 # Build the apps in release mode and publish artifacts
168168
169+ - name : Clean the solution ahead of building in release config
170+ run : dotnet clean
169171 - name : Build, in release configuration
170172 run : dotnet pack -p:VersionSuffix=$VersionSuffix -o packages
171173 - name : Upload build result artifacts
172174 uses : actions/upload-artifact@v4
173175 with :
174176 name : Build results (NuGet)
175177 path : packages/*.nupkg
176-
177- # buildDocs:
178- # TODO: Build the docco site and package the result as an artifact, don't publish it
178+ - name : Build docs website
179+ run : dotnet build -c Docs
180+ - name : Upload docs website artifact
181+ uses : actions/upload-artifact@v4
182+ with :
183+ name : Docs website
184+ path : docs/**/*
179185
180186 # publishDocs:
181187 # TODO: Take the docco site artifact and publish it to master
You can’t perform that action at this time.
0 commit comments