1
0
github-action-koha-plugin-c.../action.yml

25 lines
743 B
YAML
Raw Normal View History

2019-12-18 15:26:30 +01:00
name: 'Koha Plugin kpz Builder'
description: 'Accepts a plugin name and version, and creates a Koha Plugin kpz file'
2019-12-19 14:07:23 +01:00
branding:
icon: 'file'
color: 'green'
2019-12-18 15:26:30 +01:00
inputs:
release-version: # id of input
description: 'Version for this koha plugin release, e.g. v1.0.3'
required: true
release-name:
description: 'Name of plugin repo, e.g. koha-plugin-kitchen-sink'
required: true
minimum-version:
description: 'Minimum version of Koha this plugin is compatible with e.g. 19.11'
2019-12-18 15:26:30 +01:00
outputs:
filename: # id of output
description: 'The name of the built kpz file'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.release-version }}
- ${{ inputs.release-name }}
- ${{ inputs.minimum-version }}