Skip to content

Commit

Permalink
WiP trace (#1341)
Browse files Browse the repository at this point in the history
* WiP trace

* Repair to "new & improved" upload-artifact

* Shortest release cycle yet...
  • Loading branch information
MarkStega authored Sep 25, 2024
1 parent 9790f20 commit dd7fa7b
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/GithubActionsRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: siteDocFx
include-hidden-files: true
path: .artifacts/siteDocFx
############################################################################################################
# Build website
Expand Down
14 changes: 12 additions & 2 deletions .github/workflows/GithubActionsWIP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: siteDocFx
include-hidden-files: true
path: .artifacts/siteDocFx

############################################################################################################
Expand Down Expand Up @@ -232,13 +233,19 @@ jobs:
with:
persist-credentials: false

- name: Download Artifacts 🔻 # The built project is downloaded into the 'site' folder.
- name: Download Artifacts siteDocFx🔻 # The built project is downloaded into the 'site' folder.
uses: actions/download-artifact@v4
with:
name: siteDocFx
path: siteDocFx

- name: Download Artifacts 🔻 # The built project is downloaded into the 'site' folder.
- name: Show the documentation site artifacts
run: dir siteDocFx

- name: Show the documentation site api artifacts
run: dir siteDocFx/.artifacts/api

- name: Download Artifacts siteWeb🔻 # The built project is downloaded into the 'site' folder.
uses: actions/download-artifact@v4
with:
name: siteWeb
Expand All @@ -247,6 +254,9 @@ jobs:
- name: Configure deployment directory structure Ꙫ
run: mv siteWeb/wwwroot deployroot; mv siteDocFx deployroot/docs

- name: Show the documentation site api artifacts on deployroot
run: dir deployroot/docs

# this step rewrites the base href when we are in the main repo and about to deploy to the Material.Blazor.Current repo
- name: Base Href Rewrite 👉
uses: SteveSandersonMS/ghaction-rewrite-base-href@v1
Expand Down
20 changes: 20 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ title: ReleaseNotes
---
# Release Notes

#### [5.3.10](https://github.com/Material-Blazor/Material.Blazor/tree/5.3.10)

Released 2024-09-25

**Updates**
- Updated upload-artifact to have "include-hidden-files: true" so that the api
was included in the documentation.

**New components**

**New features**

**Breaking Changes**

**Deprecated Components**

**Known issues**

<br />

#### [5.3.9](https://github.com/Material-Blazor/Material.Blazor/tree/5.3.9)

Released 2024-09-25
Expand Down
5 changes: 1 addition & 4 deletions docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,8 @@
{
"files": [
".artifacts/api/**.yml",

"articles/**/**.md",
"articles/toc.yml",
"toc.yml",
"*.md",
"index.md",

"Material.Blazor/**/**.md",
"Material.Blazor/**/**/**.md",
Expand Down

0 comments on commit dd7fa7b

Please sign in to comment.