{% 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 %} {% else %} {% endif %}
{% endif %}
{% if pipeline.stages_json %} {% if is_admin %}
{% else %} {% endif %} {% else %} {% if is_admin %}
{% 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

A unique identifier for this pipeline.

{% endif %}
{% endblock %}