1
0
Fork 0
This is a clone of the GitHub action for creating a Koha Plugin kpz file which is compatible with Gitea Actions. https://github.com/bywatersolutions/github-action-koha-plugin-create-kpz
Go to file
Anna Christina Naß 4ab9e5892d entrypoint.sh aktualisiert 2024-04-05 12:33:03 +02:00
CHANGELOG.md If the plugin contains submodules, one of those submodules may be selected by accident. 2020-04-16 15:00:31 -04:00
Dockerfile Initial commit 2019-12-18 09:29:05 -05:00
README.md Fix typo in README 2021-05-19 09:14:12 -04:00
action.yml Add ability to specify the plugin module manually 2020-08-17 11:05:16 -04:00
entrypoint.sh entrypoint.sh aktualisiert 2024-04-05 12:33:03 +02:00

README.md

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

minimum-version

Required Minimum version of Koha this plugin is compatible with, e.g. 19.11 or 19.11.03

plugin-module

Optional Path to the plugin module file, relative to the plugin root directory. If not provided, action will attempt to auto-detect the module path.

Best practice is to keep plugins compatible across all currently supported versions of Koha

Outputs

filename

The name of the built kpz file

Example usage

- 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 }}
    minimum-version: ${{ steps.koha-version-oldstable.outputs.version-major-minor }}
    plugin-module: 'Path/To/Plugin/Module.pm"

Take a look at https://github.com/bywatersolutions/koha-plugin-kitchen-sink/blob/master/.github/workflows/main.yml for a real world usage.