Compare commits

..

2 commits

Author SHA1 Message Date
989acd1501
ci: allow output of version in release script. 2024-10-28 04:07:11 +01:00
6af04649cc
docs: capitalize lisp in readme. 2024-10-28 02:31:20 +01:00
2 changed files with 12 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# Jellyfin SmartPlaylist Plugin
Smart playlists with lisp filter engine.
Smart playlists with Lisp filter engine.
## How to use

View file

@ -7,10 +7,17 @@ VERSION=$(sed -n '/^version:/ s/^version: *//p' "${PLUGIN}/build.yaml")
ARTIFACT_DIR=artifacts
REPO_URL="https://gitea.redxef.at/redxef/jellyfin-smart-playlist/releases/download/v${VERSION}/jellyfin-smart-playlist_${VERSION}.dll"
mkdir -p "${ARTIFACT_DIR}"
find "${PLUGIN}" -name project.assets.json -exec rm -v '{}' ';'
build() {
mkdir -p "${ARTIFACT_DIR}"
find "${PLUGIN}" -name project.assets.json -exec rm -v '{}' ';'
zipfile=$($JPRM --verbosity=debug plugin build "${PLUGIN}" --output="${ARTIFACT_DIR}" --version="${VERSION}") && {
zipfile=$($JPRM --verbosity=debug plugin build "${PLUGIN}" --output="${ARTIFACT_DIR}" --version="${VERSION}") && {
$JPRM --verbosity=debug repo add --plugin-url="${REPO_URL}" . "${zipfile}"
}
}
version() {
echo "$VERSION"
}
"$@"
exit $?