A github/gitea action to support publishing release to Gitea
Go to file
2024-05-06 23:15:48 +08:00
.github/workflows fix: workflow add write permission 2023-12-04 10:37:58 +08:00
dist fix: bool value parse 2024-05-06 23:15:48 +08:00
.gitignore 🎉 2023-12-01 16:14:35 +08:00
action.yml feat: support md5sum and sha256 2024-02-21 17:31:14 +08:00
LICENSE Create LICENSE 2023-12-07 15:03:22 +08:00
main.js fix: bool value parse 2024-05-06 23:15:48 +08:00
package-lock.json feat: support md5sum and sha256 2024-02-21 17:31:14 +08:00
package.json feat: support md5sum and sha256 2024-02-21 17:31:14 +08:00
README.md feat: support md5sum and sha256 2024-02-21 17:31:14 +08:00

Gitea Release action

An action to support publishing release to Gitea.

Inputs

The following are optional as step.with keys

Name Type Description
server_url String the base url of the gitea API. Defaults to github.server_url
body String Text communicating notable changes in this release
body_path String Path to load text communicating notable changes in this release
draft Boolean Creates a draft release. Defaults to false
prerelease Boolean Indicator of whether or not is a prerelease. Defaults to false
files String Newline-delimited globs of paths to assets to upload for release
name String Name of the release. Defaults to tag name
tag_name String Name of a tag. Defaults to github.ref_name
repository String Name of a target repository in <owner>/<repo> format. Defaults to github.repository
token String Gitea Token. Defaults to ${{ github.token }}
target_commitish String Commitish value that determines where the Git tag is created from. Can be any branch or commit SHA.
md5sum Boolean Publish .md5 along with artifacts, Defaults to false
sha256sum Boolean Publish .md5 along with artifacts, Defaults to false

Example usage

uses: akkuman/gitea-release-action@v1
env:
  NODE_OPTIONS: '--experimental-fetch' # if nodejs < 18
with:
  files: |-
    bin/**    

If you want to ignore ssl verify error, you can set env NODE_TLS_REJECT_UNAUTHORIZED=false

References