Skip to content

Commit 8f604de

Browse files
committed
Fixed wrong file used for updating the release notes.
1 parent be972d3 commit 8f604de

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/PublishReleaseNotes.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -880,11 +880,11 @@ jobs:
880880
881881
export GH_TOKEN=${{ github.token }}
882882
883-
if [[ -s __ASSETS__.md ]]; then
884-
addNotes=("--notes-file" "__ASSETS__.md")
883+
if [[ -s __NOTES__.md ]]; then
884+
addNotes=("--notes-file" "__NOTES__.md")
885885
else
886-
printf " ${ANSI_LIGHT_RED}File '%s' not found.${ANSI_NOCOLOR}\n" "__ASSETS__.md"
887-
printf "::error title=%s::%s\n" "InternalError" "File '__ASSETS__.md' not found."
886+
printf " ${ANSI_LIGHT_RED}File '%s' not found.${ANSI_NOCOLOR}\n" "__NOTES__.md"
887+
printf "::error title=%s::%s\n" "InternalError" "File '__NOTES__.md' not found."
888888
exit 1
889889
fi
890890

dist/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
wheel ~= 0.45
1+
wheel ~= 0.45.0
22
twine ~= 6.2

doc/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pyTooling ~= 8.8
44

55
# Enforce latest version on ReadTheDocs
66
sphinx ~= 8.2
7-
docutils ~= 0.21
7+
docutils ~= 0.21.0
88
docutils_stubs ~= 0.0.22
99

1010
# ReadTheDocs Theme
@@ -13,7 +13,7 @@ sphinx_rtd_theme ~= 3.0
1313
# Sphinx Extenstions
1414
sphinxcontrib-mermaid ~= 1.2
1515
autoapi >= 2.0.1
16-
sphinx_design ~= 0.6
17-
sphinx-copybutton >= 0.5
16+
sphinx_design ~= 0.6.0
17+
sphinx-copybutton >= 0.5.0
1818
sphinx_autodoc_typehints ~= 3.5 # 3.6 is conflicting with old sphinx_design and rtd theme due to sphinx<9 and docutils<0.22
19-
sphinx_reports ~= 0.9
19+
sphinx_reports ~= 0.9.0

0 commit comments

Comments
 (0)