You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix release workflow
- The enumerate-product-versions.py would not work because it can't find the module "conf" since it was moved to the .scripts subfolder
- Changes the release workflow to fail when the enumerate script fails. It used to just swallow the error
* Silence yamllint
* Add notes
Copy file name to clipboardExpand all lines: .scripts/enumerate-product-versions.py
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,10 @@
1
+
importsys
2
+
importos
3
+
4
+
# NOTE: This script (used in the release workflow as of 2024-07-23) relies on conf.py being in its parent folder. Should either file be moved or the structure changed in any way remember to update this script as well.
Copy file name to clipboardExpand all lines: conf.py
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@
4
4
Application images will be created for products and associated versions configured here.
5
5
"""
6
6
7
+
# NOTE: The .scripts/enumerate-product-versions.py script (used in the release workflow as of 2024-07-23) imports this file and it relies on conf.py being in its parent folder. Should this file be moved or the structure changed in any way remember to update that script as well!
8
+
7
9
# NOTE (@NickLarsenNZ): Unfortunately, some directories have hyphens, so they need
8
10
# importing in a special way. For consistency, we'll do them all the same way.
0 commit comments