1
0

Revert "Add support for prepending Koha version to plugin version"

This reverts commit bc804fb864.
This commit is contained in:
Kyle M Hall 2020-04-16 08:04:09 -04:00
parent bc804fb864
commit 8955348f61
3 changed files with 0 additions and 12 deletions

View File

@ -13,10 +13,6 @@ 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`
### `koha-version`
**Optional** Major and minor version of Koha. If this is passed in, it will be prepended to the plugin version
## Outputs
### `filename`
@ -32,7 +28,6 @@ The name of the built kpz file
with:
release-version: ${{ steps.semvers.outputs.v_patch }}
release-name: ${{ steps.myvars.outputs.GITHUB_REPO }}
koha-version: 19.11
```
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

@ -19,4 +19,3 @@ runs:
args:
- ${{ inputs.release-version }}
- ${{ inputs.release-name }}
- ${{ inputs.koha-version }}

View File

@ -2,11 +2,6 @@
PLUGIN_VERSION=$1
PLUGIN_NAME=$2
KOHA_VERSION=$3
if [ -z "$KOHA_VERSION" ]
PLUGIN_VERSION="$KOHA_VERSION.$PLUGIN_VERSION"
fi
RELEASE_FILENAME="${PLUGIN_NAME}-${PLUGIN_VERSION}.kpz"
TODAY_ISO=$(date '+%Y-%m-%d')
@ -32,7 +27,6 @@ zip -r ../${RELEASE_FILENAME} ./Koha
cd ..
rm -rf dist
echo "KOHA VERSION: $KOHA_VERSION"
echo "PLUGIN VERSION: $PLUGIN_VERSION"
echo "PLUGIN NAME: $PLUGIN_NAME"
echo "TODAY ISO: $TODAY_ISO"