Compare commits

...

1 Commits

Author SHA1 Message Date
Jack Jackson
f8a1973f69 Testing 2023-06-15 19:07:46 -07:00
4 changed files with 5 additions and 6 deletions

View File

@ -6,10 +6,6 @@ platform:
os: linux
arch: arm64
trigger:
branch:
- main
steps:
- name: step1
image: alpine

View File

@ -18,11 +18,14 @@ do
# e.g. hello-world-0.1.1
file_metadata=$(echo $output_location | rev | cut -d '/' -f 1 | cut -c 5- | rev);
chart_name=$(echo $file_metadata | rev | cut -d '-' -f 2- | rev);
echo "$chart_name"
chart_version=$(echo $file_metadata | rev | cut -d '-' -f 1 | rev);
if [[ $(echo $current_versions | grep "$chart_name___$chart_version" | wc -l ) -eq 1 ]]; then
echo "$chart_version"
search_string="$chart_name""___""$chart_version";
echo "$search_string"
if [[ $(echo $current_versions | grep "$search_string" | wc -l ) -eq 1 ]]; then
# I.e. if the current version in the repo is the same as what we're trying to push
# TODO - should we check that we're pushing a _newer_ version?
# TODO - does the API only show the current version, or all versions?
echo "Version clash ($chart_version) for $chart_name";
exit 1;
else

View File

View File