{% extends "dashboard/layout.htm" %} {% block content %}

Register artifact

Register an existing output from a recorded run. Files are not uploaded or served by this dashboard.

{% if not mutations_enabled %}

Artifact registration is available only on a local, runtime-enabled dashboard. Existing registrations are shown below.

{% elif not runs %}

No recorded runs are available. Import an existing run or create one with the CLI, then return here to register its outputs.

{% else %} {% if errors %}{% endif %}

Hidden files, paths outside the run directory, and missing files are rejected.

Cancel
{% endif %}

Registered artifacts

{% if artifacts %}
{% for artifact in artifacts %}{% endfor %}
NamePathRunStepMedia typeSize
{{ artifact.name }}{{ artifact.path }}{{ artifact.run_id }}{{ artifact.step_execution_id or '—' }}{{ artifact.media_type or '—' }}{{ artifact.size_bytes if artifact.size_bytes is not none else '—' }}
{% else %}

No artifacts have been registered for this project.

{% endif %}
{% if errors %}{% endif %} {% endblock %}