2022-11-28 14:36:01 +00:00
|
|
|
---
|
2023-08-14 19:19:39 +00:00
|
|
|
title: wp-git-action
|
2022-11-28 14:36:01 +00:00
|
|
|
---
|
|
|
|
|
2023-08-15 21:58:20 +00:00
|
|
|
[![Build Status](https://ci.thegeeklab.de/api/badges/thegeeklab/wp-git-action/status.svg)](https://ci.thegeeklab.de/repos/thegeeklab/wp-git-action)
|
2023-08-14 19:19:39 +00:00
|
|
|
[![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/thegeeklab/wp-git-action)
|
|
|
|
[![Quay.io](https://img.shields.io/badge/quay-latest-blue.svg?logo=docker&logoColor=white)](https://quay.io/repository/thegeeklab/wp-git-action)
|
2023-08-15 21:58:20 +00:00
|
|
|
[![Go Report Card](https://goreportcard.com/badge/github.com/thegeeklab/wp-git-action)](https://goreportcard.com/report/github.com/thegeeklab/wp-git-action)
|
2023-08-14 19:19:39 +00:00
|
|
|
[![GitHub contributors](https://img.shields.io/github/contributors/thegeeklab/wp-git-action)](https://github.com/thegeeklab/wp-git-action/graphs/contributors)
|
|
|
|
[![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/wp-git-action)
|
|
|
|
[![License: MIT](https://img.shields.io/github/license/thegeeklab/wp-git-action)](https://github.com/thegeeklab/wp-git-action/blob/main/LICENSE)
|
2022-11-28 14:36:01 +00:00
|
|
|
|
2023-08-14 19:19:39 +00:00
|
|
|
Woodpecker CI plugin to execute git actions.
|
2022-11-28 14:36:01 +00:00
|
|
|
|
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
<!-- spellchecker-disable -->
|
|
|
|
{{< toc >}}
|
|
|
|
<!-- spellchecker-enable -->
|
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```YAML
|
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2022-12-02 21:21:35 +00:00
|
|
|
- name: commit changelog
|
2023-08-14 19:19:39 +00:00
|
|
|
image: thegeeklab/wp-git-action
|
2022-11-28 14:36:01 +00:00
|
|
|
settings:
|
2022-12-02 21:21:35 +00:00
|
|
|
action:
|
|
|
|
- commit
|
|
|
|
- push
|
2022-11-28 14:36:01 +00:00
|
|
|
netrc_password: ghp_3LbMg9Kncpdkhjp3bh3dMnKNXLjVMTsXk4sM
|
|
|
|
author_name: octobot
|
|
|
|
author_email: octobot@example.com
|
|
|
|
message: "[skip ci] update changelog"
|
|
|
|
```
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
<!-- prettier-ignore-start -->
|
|
|
|
<!-- spellchecker-disable -->
|
2023-08-14 19:19:39 +00:00
|
|
|
{{< propertylist name=wp-git-action.data sort=name >}}
|
2022-11-28 14:36:01 +00:00
|
|
|
<!-- spellchecker-enable -->
|
|
|
|
<!-- prettier-ignore-end -->
|
|
|
|
|
2022-12-02 21:21:35 +00:00
|
|
|
### Examples
|
|
|
|
|
|
|
|
#### Publish GitHub pages
|
|
|
|
|
|
|
|
The plugin can be used to publish GitHub pages to the pages branch. Remember that the `pages` action cannot be combined with other actions.
|
|
|
|
|
|
|
|
```YAML
|
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: publish
|
2023-08-14 19:19:39 +00:00
|
|
|
image: thegeeklab/wp-git-action
|
2022-12-02 21:21:35 +00:00
|
|
|
settings:
|
|
|
|
action:
|
|
|
|
- pages
|
|
|
|
author_email: bot@thegeeklab.de
|
|
|
|
author_name: thegeeklab-bot
|
|
|
|
message: "update pages"
|
|
|
|
branch: gh-pages
|
|
|
|
pages_directory: docs/
|
|
|
|
netrc_password: ghp_3LbMg9Kncpdkhjp3bh3dMnKNXLjVMTsXk4sM
|
|
|
|
```
|
|
|
|
|
2022-11-28 14:36:01 +00:00
|
|
|
## Build
|
|
|
|
|
|
|
|
Build the binary with the following command:
|
|
|
|
|
|
|
|
```Shell
|
|
|
|
make build
|
|
|
|
```
|
|
|
|
|
2023-08-14 19:19:39 +00:00
|
|
|
Build the Container image with the following command:
|
2022-11-28 14:36:01 +00:00
|
|
|
|
|
|
|
```Shell
|
2023-08-14 19:19:39 +00:00
|
|
|
docker build --file Containerfile.multiarch --tag thegeeklab/wp-git-action .
|
2022-11-28 14:36:01 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Test
|
|
|
|
|
|
|
|
```Shell
|
2023-08-14 19:19:39 +00:00
|
|
|
|
2022-11-28 14:36:01 +00:00
|
|
|
```
|