Gitea Release

kind: gitea/release

sourceconditiontarget

Description

The Gitea "release" plugin allows to manipulate Gitea releases.

source

When used as a "source", the Gitea release plugin allows to get a Gitea Release tag according the version filter rule provided.

condition

When used as a "condition". the Gitea release plugin allows to test that specific Gitea Release tag exist.

target

When used a "target", the Gitea release plugin Using the gitea/release as a "target" ensures that a Gitea release exists.

Parameters

NameTypeDescriptionRequired
commitishstring[T] commitish defines the commit-ish such as main
descriptionstring[T] description defines if the new release description
draftboolean[T] draft defines if the release is a draft release
ownerstring[S][C][T] owner specifies the repository owner
prereleaseboolean[T] prerelease defines if the release is a pre-release release
repositorystring[S][C][T] repository specifies the name of a repository for a specific owner
tagstring[C][T] tag defines the Gitea release tag.
titlestring[T] title defines the Gitea release title.
tokenstring

“token” specifies the credential used to authenticate with Gitea API

remark: A token is a sensitive information, it’s recommended to not set this value directly in the configuration file but to use an environment variable or a SOPS file.

The value can be set to {{ requiredEnv "GITEA_TOKEN"}} to retrieve the token from the environment variable GITHUB_TOKEN or {{ .gitea.token }} to retrieve the token from a SOPS file.

  For more information, about a SOPS file, please refer to the following documentation:

https://github.com/getsops/sops

urlstring“url” defines the Gitea url to interact with
usernamestring“username” defines the username used to authenticate with Gitea API
versionfilterobject[S] versionfilter provides parameters to specify version pattern and its type like regex, semver, or just latest.
    kindstringspecifies the version kind such as semver, regex, or latest
    patternstringspecifies the version pattern according the version kind
    strictbooleanstrict enforce strict versioning rule. Only used for semantic versioning at this time

Example

# updatecli.yaml
name: Show Gitea release usage

sources:
  default:
    name: Retrieve latest release matching versionfilter rule
    kind: gitea/release
    spec:
      url: "try.gitea.io"
      owner: olblak
      repository: updatecli-test
      versionfilter:
        kind: semver
        pattern: "~0"

conditions:
  default:
    name: Test that release "0.0.2" exist
    kind: gitea/release
    spec:
      url: "try.gitea.io"
      owner: olblak
      repository: updatecli-test
      tag: "0.0.2"
  sourcedefault:
    name: Test that release retrieved from source 'default' exist
    kind: gitea/release
    sourceid: default
    spec:
      url: "try.gitea.io"
      owner: olblak
      repository: updatecli-test

targets:
  default:
    name: "Ensure release 0.0.1 from branch main exist"
    kind: gitea/release
    spec:
      url: "try.gitea.io"
      owner: olblak
      repository: updatecli-test
      commitish: main
      token: xxx
      tag: "0.0.1"
  sourcedefault:
    name: "Ensure release where tag is retrieved from source 'default' from branch main exist"
    kind: gitea/release
    sourceid: default
    spec:
      url: "try.gitea.io"
      owner: olblak
      repository: updatecli-test
      token: xxx
      commitish: main
Top