1
0
github-action-koha-plugin-c.../README.md

30 lines
598 B
Markdown
Raw Normal View History

2019-12-18 15:26:30 +01:00
# Koha Plugin kpz Builder
This action builds a kpz file from a given name and version.
The file will be in your GitHub workspace after the action is run.
## Inputs
### `release-version`
**Required** Version for this koha plugin release, e.g. "v1.0.3"
### `release-name`
**Required** Name of plugin, should almost always be the repo name, e.g. "koha-plugin-kitchen-sink"
## Outputs
### `filename`
The name of the built kpz file
## Example usage
2019-12-18 15:30:29 +01:00
```yaml
uses: actions/github-action-koha-plugin-create-kpz@v1
2019-12-18 15:26:30 +01:00
with:
release-version: 'v1.2.3'
release-name: 'koha-plugin-kitchen-sink'
2019-12-18 15:30:29 +01:00
```