mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
17 lines
266 B
Bash
17 lines
266 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Builds the DEB inside the Docker container
|
||
|
|
||
|
set -o errexit
|
||
|
set -o xtrace
|
||
|
|
||
|
# Move to source directory
|
||
|
pushd ${SOURCE_DIR}
|
||
|
|
||
|
# Build DEB
|
||
|
dpkg-buildpackage -us -uc
|
||
|
|
||
|
# Move the artifacts out
|
||
|
mkdir -p ${ARTIFACT_DIR}/deb
|
||
|
mv /jellyfin_* ${ARTIFACT_DIR}/deb/
|