finalize profilarr
This commit is contained in:
@@ -36,17 +36,21 @@ function update_script() {
|
|||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if check_for_gh_release "deno" "denoland/deno"; then
|
||||||
|
ARCH=$(uname -m)
|
||||||
|
fetch_and_deploy_gh_release "deno" "denoland/deno" "prebuild" "latest" "/usr/local/bin" "deno-${ARCH}-unknown-linux-gnu.zip"
|
||||||
|
fi
|
||||||
|
|
||||||
if check_for_gh_release "profilarr" "Dictionarry-Hub/profilarr"; then
|
if check_for_gh_release "profilarr" "Dictionarry-Hub/profilarr"; then
|
||||||
msg_info "Stopping Service"
|
msg_info "Stopping Service"
|
||||||
systemctl stop profilarr
|
systemctl stop profilarr
|
||||||
msg_ok "Stopped Service"
|
msg_ok "Stopped Service"
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball"
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "profilarr" "Dictionarry-Hub/profilarr" "tarball"
|
||||||
PROFILARR_VERSION=$(curl -fsSL "https://api.github.com/repos/Dictionarry-Hub/profilarr/releases/latest" | grep '"tag_name"' | sed 's/.*"v\([^"]*\)".*/\1/')
|
PROFILARR_VERSION=$(cat ~/.profilarr)
|
||||||
|
|
||||||
msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)"
|
msg_info "Building Profilarr v${PROFILARR_VERSION} (Patience)"
|
||||||
cd /opt/profilarr
|
cd /opt/profilarr
|
||||||
ARCH=$(uname -m)
|
|
||||||
cat >src/lib/shared/build.ts <<EOF
|
cat >src/lib/shared/build.ts <<EOF
|
||||||
// Generated at update time. Do not hand-edit.
|
// Generated at update time. Do not hand-edit.
|
||||||
export type Channel = 'stable' | 'develop' | 'dev';
|
export type Channel = 'stable' | 'develop' | 'dev';
|
||||||
@@ -69,10 +73,7 @@ EOF
|
|||||||
export APP_BASE_PATH=/opt/profilarr/dist/build
|
export APP_BASE_PATH=/opt/profilarr/dist/build
|
||||||
export VITE_CHANNEL=stable
|
export VITE_CHANNEL=stable
|
||||||
$STD deno run -A npm:vite build
|
$STD deno run -A npm:vite build
|
||||||
case "$ARCH" in
|
DENO_TARGET="${ARCH}-unknown-linux-gnu"
|
||||||
aarch64) DENO_TARGET="aarch64-unknown-linux-gnu" ;;
|
|
||||||
*) DENO_TARGET="x86_64-unknown-linux-gnu" ;;
|
|
||||||
esac
|
|
||||||
$STD deno compile \
|
$STD deno compile \
|
||||||
--no-check \
|
--no-check \
|
||||||
--allow-net \
|
--allow-net \
|
||||||
|
|||||||
@@ -15,7 +15,6 @@ update_os
|
|||||||
|
|
||||||
msg_info "Installing Dependencies"
|
msg_info "Installing Dependencies"
|
||||||
$STD apt install -y \
|
$STD apt install -y \
|
||||||
unzip \
|
|
||||||
git \
|
git \
|
||||||
libsqlite3-0
|
libsqlite3-0
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
@@ -49,10 +48,7 @@ $STD deno install --node-modules-dir
|
|||||||
export APP_BASE_PATH=/opt/profilarr/dist/build
|
export APP_BASE_PATH=/opt/profilarr/dist/build
|
||||||
export VITE_CHANNEL=stable
|
export VITE_CHANNEL=stable
|
||||||
$STD deno run -A npm:vite build
|
$STD deno run -A npm:vite build
|
||||||
case "$ARCH" in
|
DENO_TARGET="${ARCH}-unknown-linux-gnu"
|
||||||
aarch64) DENO_TARGET="aarch64-unknown-linux-gnu" ;;
|
|
||||||
*) DENO_TARGET="x86_64-unknown-linux-gnu" ;;
|
|
||||||
esac
|
|
||||||
$STD deno compile \
|
$STD deno compile \
|
||||||
--no-check \
|
--no-check \
|
||||||
--allow-net \
|
--allow-net \
|
||||||
|
|||||||
Reference in New Issue
Block a user