1
0

Compare commits

...

21 Commits
v2 ... master

Author SHA1 Message Date
4ab9e5892d entrypoint.sh aktualisiert 2024-04-05 12:33:03 +02:00
a0c4fd8fec {DATE_UPDATED} statt 1900-01-01 2024-04-05 12:20:38 +02:00
9bc0033d89 entrypoint.sh aktualisiert 2024-03-05 17:17:56 +01:00
a967e874a4 entrypoint.sh aktualisiert 2024-03-05 16:57:49 +01:00
76811fe154 entrypoint.sh aktualisiert 2024-03-05 16:54:46 +01:00
0329cf1214 entrypoint.sh aktualisiert 2024-03-05 16:38:39 +01:00
b1345ebaeb entrypoint.sh aktualisiert 2024-03-05 16:27:34 +01:00
Kyle M Hall
11bf1e5d0e Fix typo in README 2021-05-19 09:14:12 -04:00
Kyle M Hall
1c3856e489 Find the correct Perl module. Results are inverted on Mac compared to Linux 2020-12-03 10:55:21 -05:00
Kyle M Hall
c725901e60
Output the diff with changes made by the action 2020-12-03 10:46:27 -05:00
Kyle M Hall
2fbd14329c Add ability to specify the plugin module manually 2020-08-17 11:05:16 -04:00
Kyle M Hall
e67b62bef1 Renamed META.yml to PLUGIN.yml 2020-04-22 08:53:21 -04:00
Kyle M Hall
b62ed65111 If the plugin contains submodules, one of those submodules may be selected by accident. 2020-04-16 15:00:31 -04:00
Kyle M Hall
9ee9df19a6 Check the correct directory for readme and changelog files 2020-04-16 14:11:57 -04:00
Kyle M Hall
6c98481cd7 Add changelog, ability to copy plugin changelog and readme files into plugin data dir before zipping 2020-04-16 13:43:23 -04:00
Kyle M Hall
94432960e8 Add missing parameter to parameter list 2020-04-16 09:59:33 -04:00
Kyle M Hall
bd74b67099 Update echos 2020-04-16 09:38:32 -04:00
Kyle M Hall
8ae204c7f9 Add ability to set plugin's minimum Koha version 2020-04-16 08:10:33 -04:00
Kyle M Hall
8955348f61 Revert "Add support for prepending Koha version to plugin version"
This reverts commit bc804fb864df6382432870371df93e030a19049e.
2020-04-16 08:04:09 -04:00
Kyle M Hall
bc804fb864 Add support for prepending Koha version to plugin version 2020-04-16 07:35:17 -04:00
Kyle M Hall
b989ed8652 Add optional support for META.yml 2020-04-16 07:12:22 -04:00
4 changed files with 98 additions and 18 deletions

25
CHANGELOG.md Normal file
View File

@ -0,0 +1,25 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.2] - 2020-04-16
### Changed
- If the plugin contains submodules, one of those submodules may be selected by accident. This should be fixed.
## [1.0.1] - 2020-04-16
### Changed
- Wrong directory was being checked for readme and changelog files
## [1.0.0] - 2020-04-16
### Added
- This changelog
- If README.md is present in the root directory of the plugin, it will be copied into the plugin's data directory before create the kpz file
- The same as above, but for CHANGELOG.md as well
### Changed
- Nothing
### Removed
- Nothing

View File

@ -13,6 +13,16 @@ The file will be in your GitHub workspace after the action is run.
**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`
@ -28,6 +38,8 @@ The name of the built kpz file
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.

View File

@ -10,6 +10,10 @@ inputs:
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'
plugin-module:
description: 'Path to the plugin module relative to the plugin directory root, e.g. Koha/Plugin/Com/ByWaterSolutions/CurbsidePickup.pm'
outputs:
filename: # id of output
description: 'The name of the built kpz file'
@ -19,3 +23,5 @@ runs:
args:
- ${{ inputs.release-version }}
- ${{ inputs.release-name }}
- ${{ inputs.minimum-version }}
- ${{ inputs.plugin-module }}

View File

@ -2,28 +2,65 @@
PLUGIN_VERSION=$1
PLUGIN_NAME=$2
RELEASE_FILENAME="${PLUGIN_NAME}-${PLUGIN_VERSION}.kpz"
TODAY_ISO=$(date '+%Y-%m-%d')
cd /github/workspace
mkdir dist
cp -r Koha dist/.
cd dist
PLUGIN_MODULE=$(find . -regex '\./Koha/Plugin/.*[A-Za-z]*\.pm$' | sed '1q;d')
sed -i -e "s/{VERSION}/${PLUGIN_VERSION}/g" ${PLUGIN_MODULE}
sed -i -e "s/1900-01-01/${TODAY_ISO}/g" $PLUGIN_MODULE
zip -r ../${RELEASE_FILENAME} ./Koha
cd ..
rm -rf dist
MINIMUM_VERSION=$3
PLUGIN_MODULE=$4
echo "PLUGIN VERSION: $PLUGIN_VERSION"
echo "PLUGIN NAME: $PLUGIN_NAME"
echo "TODAY ISO: $TODAY_ISO"
echo "MINIMUM VERSION: $MINIMUM_VERSION"
RELEASE_FILENAME="${PLUGIN_NAME}-${PLUGIN_VERSION}.kpz"
echo "RELEASE FILENAME: $RELEASE_FILENAME"
TODAY_ISO=$(date '+%Y-%m-%d')
echo "TODAY ISO: $TODAY_ISO"
#cd /github/workspace
echo "$(pwd)"
mkdir -v dist
cp -rv Koha dist/.
cd dist
pwd
[ -z "$PLUGIN_MODULE" ] && PLUGIN_MODULE=$(find . -regex '\./Koha/Plugin/.*[A-Za-z]*\.pm$' | head -1 | sed '1q;d')
echo "PLUGIN MODULE: $PLUGIN_MODULE"
PLUGIN_YML=$(find . -regex '\./Koha/Plugin/.*[A-Za-z]*/PLUGIN\.yml$' | sed '1q;d')
sed -i -e "s/{VERSION}/${PLUGIN_VERSION}/g" ${PLUGIN_MODULE}
sed -i -e "s/{MINIMUM_VERSION}/${MINIMUM_VERSION}/g" ${PLUGIN_MODULE}
sed -i -e "s/{DATE_UPDATED}/${TODAY_ISO}/g" ${PLUGIN_MODULE}
if [ -f "$PLUGIN_YML" ]; then
sed -i -e "s/{VERSION}/${PLUGIN_VERSION}/g" ${PLUGIN_YML}
sed -i -e "s/{MINIMUM_VERSION}/${MINIMUM_VERSION}/g" ${PLUGIN_YML}
sed -i -e "s/{DATE_UPDATED}/${TODAY_ISO}/g" ${PLUGIN_YML}
cat $PLUGIN_YML
fi
PLUGIN_DIR=${PLUGIN_MODULE::-3}
echo "PLUGIN DIR: $PLUGIN_DIR"
if [ ! -d $PLUGIN_DIR ]; then
mkdir -v $PLUGIN_DIR
fi
if [ -f "../CHANGELOG.md" ]; then
echo "CHANGELOG.md found, copying to plugin directory"
cp ../CHANGELOG.md "$PLUGIN_DIR/CHANGELOG.md"
else
echo "CHANGELOG.md not found, please add a CHANGELOG.md file to your plugin's root directory"
fi
if [ -f "../README.md" ]; then
echo "README.md found, copying to plugin directory"
cp ../README.md "$PLUGIN_DIR/README.md"
else
echo "README.md not found, please add a README.md file to your plugin's root directory"
fi
zip -r ../${RELEASE_FILENAME} ./Koha
[ -z "$PLUGIN_YML" ] || cp ${PLUGIN_YML} .. # Copy munged PLUGIN.yml to the root directory
cd ..
rm -rf dist
echo ::set-output name=filename::${RELEASE_FILENAME}