Further attempts to better refine the automation so that it works as expected
All checks were successful
Deploy the Helm Chart / build (push) Successful in 7s

This commit is contained in:
Alan Bridgeman 2025-12-19 12:46:50 -06:00
parent e7802f7c11
commit 761ac4aa45
2 changed files with 4 additions and 3 deletions

View file

@ -57,7 +57,8 @@ jobs:
echo "Chart not found in the repository. Adding it..."
# Set a blank value so that it WON'T match the local version
IFS=' ' read -r -a REMOTE_VERSIONS <<< ""
#IFS=' ' read -r -a REMOTE_VERSIONS <<< ""
REMOTE_VERSIONS=()
fi
# Just to keep things clean/safe/etc... remove the repo
@ -86,7 +87,7 @@ jobs:
fi
# If the versions match, we want to increment the chart's patch version
if [ "has_match" ]; then
if [ "$has_match" == "true" ]; then
echo "Versions match!"
# Increment the patch version of the local version (Ex. 1.0.0 -> 1.0.1)

View file

@ -8,4 +8,4 @@ maintainers:
name: ba-custom-hashicorp-vault
sources:
- https://git.bridgemanaccessible.ca/Bridgeman-Accessible/custom-hashicorp-vault
version: "1.0.1"
version: "1.0.0"