mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -07:00
26 lines
448 B
Bash
Executable File
26 lines
448 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#= Debian/Ubuntu all .deb
|
|
|
|
set -o errexit
|
|
set -o xtrace
|
|
|
|
# Move to source directory
|
|
pushd ${SOURCE_DIR}
|
|
|
|
cp -a yarn.lock /tmp/yarn.lock
|
|
|
|
# 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/yarn.lock yarn.lock
|
|
|
|
if [[ ${IS_DOCKER} == YES ]]; then
|
|
chown -Rc $(stat -c %u:%g ${ARTIFACT_DIR}) ${ARTIFACT_DIR}
|
|
fi
|
|
|
|
popd
|