We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae4f25 commit fef21cdCopy full SHA for fef21cd
.github/workflows/csi-sidecars-update.yaml
@@ -90,10 +90,14 @@ jobs:
90
}
91
92
update_installation_wizard_sidecars() {
93
- csm_version=$csm
+ # Get the latest CSM version
94
+ echo "Latest CSM Version is $csm"
95
+
96
+ # Sanitize the CSM version
97
+ csm_version=$(echo $csm | tr -d 'v' | tr -d '\r')
98
99
# The installation wizard templates should have the latest version of the CSM.
- wizard_files=$(find content/docs/getting-started/installation/installationwizard/src/templates/ -name "*$version*")
100
+ wizard_files=$(find content/docs/getting-started/installation/installationwizard/src/templates/ -name "*$csm_version*")
101
102
if [ -z "$wizard_files" ]; then
103
echo "No Installation Wizard content for latest CSM found. Skipping."
0 commit comments