@@ -122,6 +122,7 @@ jobs:
122122 uses : actions/upload-artifact@v4
123123 with :
124124 name : siteDocFx
125+ include-hidden-files : true
125126 path : .artifacts/siteDocFx
126127
127128# ###########################################################################################################
@@ -232,13 +233,19 @@ jobs:
232233 with :
233234 persist-credentials : false
234235
235- - name : Download Artifacts 🔻 # The built project is downloaded into the 'site' folder.
236+ - name : Download Artifacts siteDocFx 🔻 # The built project is downloaded into the 'site' folder.
236237 uses : actions/download-artifact@v4
237238 with :
238239 name : siteDocFx
239240 path : siteDocFx
240241
241- - name : Download Artifacts 🔻 # The built project is downloaded into the 'site' folder.
242+ - name : Show the documentation site artifacts
243+ run : dir siteDocFx
244+
245+ - name : Show the documentation site api artifacts
246+ run : dir siteDocFx/.artifacts/api
247+
248+ - name : Download Artifacts siteWeb🔻 # The built project is downloaded into the 'site' folder.
242249 uses : actions/download-artifact@v4
243250 with :
244251 name : siteWeb
@@ -247,6 +254,9 @@ jobs:
247254 - name : Configure deployment directory structure Ꙫ
248255 run : mv siteWeb/wwwroot deployroot; mv siteDocFx deployroot/docs
249256
257+ - name : Show the documentation site api artifacts on deployroot
258+ run : dir deployroot/docs
259+
250260 # this step rewrites the base href when we are in the main repo and about to deploy to the Material.Blazor.Current repo
251261 - name : Base Href Rewrite 👉
252262 uses : SteveSandersonMS/ghaction-rewrite-base-href@v1
0 commit comments