{% extends "base.html.jinja" %} {% from "components/timestamp.html.jinja" import timeago as ts %} {% block content %} Release Pipelines {{ current_project }} · Define multi-stage deployment pipelines as a DAG {% if pipelines | length > 0 %} {% for pipeline in pipelines %} {% if pipeline.enabled %} {% else %} {% endif %} {{ pipeline.name }} {% if pipeline.stages_json %} {{ pipeline.stage_count }} stage{{ "s" if pipeline.stage_count != 1 }} {% else %} no stages {% endif %} {{ ts(pipeline.updated_at) }} {% if is_admin %} {% if pipeline.enabled %} Disable {% else %} Enable {% endif %} Delete {% endif %} {% if pipeline.stages_json %} {% if is_admin %} {{ pipeline.stages_json }} Save Changes {% else %} {{ pipeline.stages_json }} {% endif %} {% else %} {% if is_admin %} Save Changes {% else %} No stages configured yet. {% endif %} {% endif %} {% endfor %} {% else %} No release pipelines configured. {% if is_admin %} Create one below to define a multi-stage deployment DAG. {% endif %} {% endif %} {% if is_admin %} Create Pipeline Name A unique identifier for this pipeline. Stages Create Pipeline {% endif %} {% endblock %}
{{ current_project }} · Define multi-stage deployment pipelines as a DAG
No stages configured yet.
No release pipelines configured.
Create one below to define a multi-stage deployment DAG.
A unique identifier for this pipeline.