Skip to content

Commit dd7fa7b

Browse files
authored
WiP trace (#1341)
* WiP trace * Repair to "new & improved" upload-artifact * Shortest release cycle yet...
1 parent 9790f20 commit dd7fa7b

4 files changed

Lines changed: 34 additions & 6 deletions

File tree

.github/workflows/GithubActionsRelease.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
uses: actions/upload-artifact@v4
8484
with:
8585
name: siteDocFx
86+
include-hidden-files: true
8687
path: .artifacts/siteDocFx
8788
############################################################################################################
8889
# Build website

.github/workflows/GithubActionsWIP.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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

ReleaseNotes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ title: ReleaseNotes
44
---
55
# Release Notes
66

7+
#### [5.3.10](https://github.com/Material-Blazor/Material.Blazor/tree/5.3.10)
8+
9+
Released 2024-09-25
10+
11+
**Updates**
12+
- Updated upload-artifact to have "include-hidden-files: true" so that the api
13+
was included in the documentation.
14+
15+
**New components**
16+
17+
**New features**
18+
19+
**Breaking Changes**
20+
21+
**Deprecated Components**
22+
23+
**Known issues**
24+
25+
<br />
26+
727
#### [5.3.9](https://github.com/Material-Blazor/Material.Blazor/tree/5.3.9)
828

929
Released 2024-09-25

docfx.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,8 @@
2222
{
2323
"files": [
2424
".artifacts/api/**.yml",
25-
26-
"articles/**/**.md",
27-
"articles/toc.yml",
2825
"toc.yml",
29-
"*.md",
26+
"index.md",
3027

3128
"Material.Blazor/**/**.md",
3229
"Material.Blazor/**/**/**.md",

0 commit comments

Comments
 (0)