Drone plugins > Gitea Release
Gitea Release
by drone-plugins
The gitea-release plugin is used to publish files and artifacts to Gitea Release.
Example
kind: pipeline
name: default
steps:
- name: gitea_release
image: plugins/gitea-release
settings:
api_key: xxxxxxxx
base_url: https://your.gitea.tld
files: dist/*
Properties
api_key
stringrequiredGitea API key
Default: none
base_url
stringrequiredGitea base URL
Default: none
files
arrayrequiredfiles to upload to Gitea Release, globs are allowed.
Default: none
file_exists
stringoptionalwhat to do if an file asset already exists, supported values - overwrite, skip and fail.
Default: overwrite
checksum
stringoptionalchecksum takes hash methods to include in your Gitea release for the files specified. Supported hash methods include - md5, sha1, sha256, sha512, adler32, and crc32.
Default: none
draft
booleanoptionaldraft release
Default: false
prerelease
booleanoptionalprerelease release
Default: false
note
stringoptionalfile or string with notes for the release
Default: none
title
stringoptionalfile or string for the title shown in the gitea release
Default: none
insecure
booleanoptionalvisit base_url via insecure https protocol
Default: false