Commit 38f86a97 authored by FulcrandG's avatar FulcrandG
Browse files

Using jinja templates instead of wrappers in builder

parent 530bb400
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ def get_description(job_path, job_name):
    return file.read()

def get_changelogs(job_path, job_name):
  latest_version = listdir(job_path + "/" + job_changelog_dir)[-1][0:-3]
  latest_version = listdir(job_path + "/" + job_changelog_dir)[0:-3]
  ### TODO add the url of the tag in here
  latest_url = "<TAG_URL>"
  version_url = "<TAG_URL>"
@@ -68,7 +68,7 @@ def get_changelogs(job_path, job_name):
  }

  changelogs = []
  for version in listdir(job_path + "/" + job_changelog_dir)[::-1]:
  for version in listdir(job_path + "/" + job_changelog_dir):
    with open(job_path + "/" + job_changelog_dir + "/" + version) as file:
      changelogs.append({
        "version": version[0:-3],
+1 −4
Original line number Diff line number Diff line
* Rename the job from `documentation` to `apidoc`
* Update the default output folder to`documentation_build` in order to
  ensure plug and play compatibility with [pages](jobs/deployment/pages)
  deployment job. **Note**: output folder can be customized using
  `APIDOC_OUTPUT_PATH` [variable](#variables)
 No newline at end of file
* Update the default output folder to`documentation_build` in order to ensure plug and play compatibility with [pages](jobs/deployment/pages) deployment job. **Note**: output folder can be customized using `APIDOC_OUTPUT_PATH` [variable](#variables)
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
* **[helm_deploy-0.0.1](<include tag>)** (initial version)
Initial version
+1 −3
Original line number Diff line number Diff line
* **Tag `2020-05-05_3`** (legacy): `https://gitlab.com/go2scale/hub/-/raw/2020-05-05_3/jobs/documentation.gitlab-ci.yml`

    * Initial version
 No newline at end of file
Initial version
 No newline at end of file
+5 −7
Original line number Diff line number Diff line
* **Tag `2020-05-31_1`** (legacy): `https://gitlab.com/go2scale/hub/-/raw/2020-05-31_1/jobs/documentation.gitlab-ci.yml`

!!! warning
    This update introduces breaking changes. Follow [this
    guide](https://squidfunk.github.io/mkdocs-material/releases/5/#how-to-upgrade)
Loading