ci: allow output of version in release script.

This commit is contained in:
redxef 2024-10-28 04:07:11 +01:00
parent 6af04649cc
commit 989acd1501
Signed by: redxef
GPG key ID: 7DAC3AA211CBD921

View file

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