{% extends "base.html" %} {% block title %} {{ _("How do you want to create releases?") }} {% endblock %} {% block content %}

{{ self.title() }}

{{ _("A release is a single downloadable version of your %(title)s.", title=package.type.value.lower()) }} {{ _("You need to create releases even if you use a rolling release development cycle, as Minetest needs them to check for updates.") }}

{% if package.repo %}

{{ _("When you push a commit or tag to your Git repository, ContentDB can create a new release automatically.") }} {{ _("ContentDB will check your Git repository at 2am UTC every day, but you can use webhooks or the API for faster updates.") }}

{{ _("This can be changed later.") }}

Set up automatic releases Create releases manually Later

{% else %}

{{ _("Using Git would allow you to create releases automatically when you push code or tags.") }} {{ _("Unfortunately, you will otherwise need to create a release manually.") }}

{{ _("This can be changed later.") }}

Add Git repo Create releases manually Later

{% endif %} {% endblock %}