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

34 lines
851 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`
2019-12-18 15:31:15 +01:00
**Required** Version for this koha plugin release, e.g. `v1.0.3`
2019-12-18 15:26:30 +01:00
### `release-name`
2019-12-18 15:31:15 +01:00
**Required** Name of plugin, should almost always be the repo name, e.g. `koha-plugin-kitchen-sink`
2019-12-18 15:26:30 +01:00
## Outputs
### `filename`
The name of the built kpz file
## Example usage
2019-12-18 15:30:29 +01:00
```yaml
2019-12-18 21:16:10 +01:00
- name: Build Koha Plugin kpz artifact
id: kpz
uses: "bywatersolutions/github-action-koha-plugin-create-kpz@master"
with:
release-version: ${{ steps.semvers.outputs.v_patch }}
release-name: ${{ steps.myvars.outputs.GITHUB_REPO }}
2019-12-18 15:30:29 +01:00
```
2019-12-18 21:16:10 +01:00
Take a look at https://github.com/bywatersolutions/koha-plugin-kitchen-sink/blob/master/.github/workflows/main.yml for a real world usage.