Plugin: provider-gitea
Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.
Publishes releases to a Gitea instance. It is a good fit for self-hosted teams that manage repositories and releases in Gitea.
Installation
Section titled “Installation”go install github.com/SemRels/provider-gitea@latestEach plugin is a standalone Go binary. Keep it on your PATH or reference it with path: in .semrel.yaml. If you keep secrets in a .env file, load them with semrel --env-file .env release.
Configuration
Section titled “Configuration”version: 1plugins: - name: provider-gitea path: provider-gitea args: base_url: 'https://gitea.example.com' token: '${{ env.GITEA_TOKEN }}' owner: SemRels repo: semrel draft: falseEnvironment Variables
Section titled “Environment Variables”| Name | Required | Default | Description |
|---|---|---|---|
SEMREL_PLUGIN_BASE_URL | yes | — | Base URL for the Gitea instance. |
SEMREL_PLUGIN_TOKEN | yes | — | API token for Gitea authentication. |
SEMREL_PLUGIN_OWNER | no | current repository owner | Repository owner or organization. |
SEMREL_PLUGIN_REPO | no | current repository name | Repository name to publish into. |
SEMREL_PLUGIN_DRAFT | no | false | Create the release as a draft. |
Release Context Variables
Section titled “Release Context Variables”SEMREL_TAG_NAMESEMREL_NEXT_VERSIONSEMREL_CURRENT_VERSIONSEMREL_CHANGELOGSEMREL_DRY_RUN
Behavior
Section titled “Behavior”For v1.4.0, the provider can create a Gitea release that uses the SemRel tag name and publishes the generated changelog body.