Commit 39b3d826 authored by Nikos Psaromanolakis's avatar Nikos Psaromanolakis
Browse files

fix: correct format version

parent 5ef41001
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ pkg-manager:
    repository: 
      labs.etsi.org:5050/osl/hypo/code/org.etsi.osl.hypo.core/pkg-manager.helm/pkg-manager
    pullPolicy: Always
    tag: "1.0.1"
    tag: "latest"

  imagePullSecrets:
  - name: regcred
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ def increment_ver(current_version):
    month = now.month
    day = now.day

    return f"{year}.{month:02d}.{day:02d}"
    return f"{year}.{month}.{day:02d}"


def update_chart(chart_file):
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ def increment_ver(current_version):
    month = now.month
    day = now.day

    return f"{year}.{month:02d}.{day:02d}"
    return f"{year}.{month}.{day:02d}"


def update_chart(chart_file):