mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-10 03:40:40 +00:00
73 lines
2.3 KiB
Markdown
73 lines
2.3 KiB
Markdown
---
|
|
title: wp-gitea-release
|
|
---
|
|
|
|
[![Build Status](https://ci.thegeeklab.de/api/badges/thegeeklab/wp-gitea-release/status.svg)](https://ci.thegeeklab.de/repos/thegeeklab/wp-gitea-release)
|
|
[![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/thegeeklab/wp-gitea-release)
|
|
[![Quay.io](https://img.shields.io/badge/quay-latest-blue.svg?logo=docker&logoColor=white)](https://quay.io/repository/thegeeklab/wp-gitea-release)
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/thegeeklab/wp-gitea-release)](https://goreportcard.com/report/github.com/thegeeklab/wp-gitea-release)
|
|
[![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/wp-gitea-release)](https://github.com/thegeeklab/wp-gitea-release/graphs/contributors)
|
|
[![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/wp-gitea-release)
|
|
[![License: Apache-2.0](https://img.shields.io/github/license/thegeeklab/wp-gitea-release)](https://github.com/thegeeklab/wp-gitea-release/blob/main/LICENSE)
|
|
|
|
Woodpecker CI plugin to publish files and artifacts to Gitea releases.
|
|
|
|
<!-- prettier-ignore-start -->
|
|
<!-- spellchecker-disable -->
|
|
{{< toc >}}
|
|
<!-- spellchecker-enable -->
|
|
<!-- prettier-ignore-end -->
|
|
|
|
## Usage
|
|
|
|
{{< hint type=note >}}
|
|
Only tag events are supported by this plugin. Running the plugin on other events will result in an error.
|
|
{{< /hint >}}
|
|
|
|
```YAML
|
|
steps:
|
|
- name: publish
|
|
image: quay.io/thegeeklab/wp-gitea-release
|
|
settings:
|
|
api_key: randomstring
|
|
base_url: https://gitea.rknet.org
|
|
files: build/*
|
|
```
|
|
|
|
### Parameters
|
|
|
|
<!-- prettier-ignore-start -->
|
|
<!-- spellchecker-disable -->
|
|
{{< propertylist name=wp-gitea-release.data sort=name >}}
|
|
<!-- spellchecker-enable -->
|
|
<!-- prettier-ignore-end -->
|
|
|
|
## Build
|
|
|
|
Build the binary with the following command:
|
|
|
|
```shell
|
|
make build
|
|
```
|
|
|
|
Build the container image with the following command:
|
|
|
|
```shell
|
|
docker build --file Containerfile.multiarch --tag thegeeklab/wp-gitea-release .
|
|
```
|
|
|
|
## Test
|
|
|
|
```Shell
|
|
docker run --rm \
|
|
-e PLUGIN_BASE_URL=https://try.gitea.io \
|
|
-e PLUGIN_API_KEY=randomstring \
|
|
-e PLUGIN_FILES=build/* \
|
|
-e CI_REPO_OWNER=gitea \
|
|
-e CI_REPO_NAME=test \
|
|
-e CI_PIPELINE_EVENT=tag \
|
|
-v $(pwd):/build:z \
|
|
-w /build \
|
|
thegeeklab/wp-gitea-release
|
|
```
|