Skip to content

Latest commit

History

History
16 lines (12 loc) 路 437 Bytes

File metadata and controls

16 lines (12 loc) 路 437 Bytes

Publishing new versions of the invenio Helm chart

  1. Upgrade the version field in ./charts/invenio/Chart.yaml.

  2. Commit and tag:

    CHART_VERSION="$(yq .version "$(git rev-parse --show-toplevel)/charts/invenio/Chart.yaml")"
    git commit -s -m "馃摝 release: v${CHART_VERSION}"
    git tag "v${CHART_VERSION}"
  3. Push:

    git push && git push --tags