mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 10:28:18 -07:00
40 lines
967 B
Bash
Executable File
40 lines
967 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
# move to source directory
|
|
pushd ${SOURCE_DIR}
|
|
|
|
cp -a package-lock.json /tmp/package-lock.json
|
|
|
|
# modify changelog to unstable configuration if IS_UNSTABLE
|
|
if [[ ${IS_UNSTABLE} == 'yes' ]]; then
|
|
pushd debian
|
|
|
|
PR_ID=$( git log --grep 'Merge pull request' --oneline --single-worktree --first-parent | head -1 | grep --color=none -Eo '#[0-9]+' | tr -d '#' )
|
|
|
|
cat <<EOF >changelog
|
|
jellyfin-web (${BUILD_ID}-unstable) unstable; urgency=medium
|
|
|
|
* Jellyfin Web unstable build ${BUILD_ID} for merged PR #${PR_ID}
|
|
|
|
-- Jellyfin Packaging Team <packaging@jellyfin.org> $( date --rfc-2822 )
|
|
EOF
|
|
popd
|
|
fi
|
|
|
|
# build deb
|
|
dpkg-buildpackage -us -uc --pre-clean --post-clean
|
|
|
|
mkdir -p ${ARTIFACT_DIR}
|
|
mv ../jellyfin*.{deb,dsc,tar.gz,buildinfo,changes} ${ARTIFACT_DIR}
|
|
|
|
cp -a /tmp/package-lock.json package-lock.json
|
|
|
|
if [[ ${IS_DOCKER} == YES ]]; then
|
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
|
fi
|
|
|
|
popd
|