diff --git a/release.sh b/release.sh index ad756cd..f7ebbd6 100755 --- a/release.sh +++ b/release.sh @@ -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}") && { - $JPRM --verbosity=debug repo add --plugin-url="${REPO_URL}" . "${zipfile}" + 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 $? +