Skip to content

Commit 68ccdd0

Browse files
CopilotMalcolmnixon
andcommitted
Address PR feedback: move download step, add mermaid filter, fix intro
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
1 parent ee810b7 commit 68ccdd0

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,12 @@ jobs:
255255
- name: Restore Tools
256256
run: dotnet tool restore
257257

258+
- name: Download BuildMark Package
259+
uses: actions/download-artifact@v7
260+
with:
261+
name: artifacts-windows-latest
262+
path: packages
263+
258264
- name: Setup Node.js
259265
uses: actions/setup-node@v6
260266
with:
@@ -308,18 +314,12 @@ jobs:
308314
echo "=== SonarCloud Quality Report ==="
309315
cat docs/quality/sonar-quality.md
310316
311-
- name: Download BuildMark Package
312-
uses: actions/download-artifact@v7
313-
with:
314-
name: artifacts-windows-latest
315-
path: buildmark-package
316-
317317
- name: Install BuildMark Tool
318318
shell: bash
319319
run: |
320320
echo "Installing BuildMark version ${{ inputs.version }}"
321321
dotnet tool install --global \
322-
--add-source buildmark-package \
322+
--add-source packages \
323323
--version ${{ inputs.version }} \
324324
DemaConsulting.BuildMark
325325
@@ -344,6 +344,7 @@ jobs:
344344
--defaults docs/buildnotes/definition.yaml
345345
--metadata version="${{ inputs.version }}"
346346
--metadata date="$(date +'%Y-%m-%d')"
347+
--filter node_modules/.bin/mermaid-filter.cmd
347348
--output docs/buildnotes/buildnotes.html
348349
349350
- name: Convert Build Notes HTML to PDF with Weasyprint
@@ -359,6 +360,7 @@ jobs:
359360
--defaults docs/quality/definition.yaml
360361
--metadata version="${{ inputs.version }}"
361362
--metadata date="$(date +'%Y-%m-%d')"
363+
--filter node_modules/.bin/mermaid-filter.cmd
362364
--output docs/quality/quality.html
363365
364366
- name: Convert Code Quality HTML to PDF with Weasyprint

docs/buildnotes/introduction.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This document contains the build notes for the BuildMark project.
44

55
## Purpose
66

7-
This report serves as a comprehensive record of changes, bug fixes, and known issues
8-
for this release of BuildMark. It provides transparency about what has changed since
9-
the previous version and helps users understand the improvements and fixes included
7+
This report serves as a comprehensive record of changes and bug fixes for this
8+
release of BuildMark. It provides transparency about what has changed since the
9+
previous version and helps users understand the improvements and fixes included
1010
in this build.
1111

1212
## Scope
@@ -16,7 +16,6 @@ This build notes report covers:
1616
- Version information and commit details
1717
- Changes and new features implemented
1818
- Bugs fixed in this release
19-
- Known issues and limitations
2019

2120
## Generation Source
2221

0 commit comments

Comments
 (0)