2
0
mirror of https://github.com/spritsail/plex-media-server.git synced 2025-02-23 14:38:35 +00:00
plex-media-server/update.sh
Joe Groocock 02595c5a99
Revert "Bump Plex build on cron and attempt to push to git"
This reverts commit 7dea8976668de98e4b5e426ea4fc872a3bb6a02b.
2021-04-28 09:05:32 +01:00

28 lines
772 B
Bash
Executable File

#!/bin/bash
set -e
RELEASE="$(curl -fsSL https://api.spritsail.io/plex/release?pass | jq -c)"
VERSION="$(jq -r .version <<< "$RELEASE")"
CHECKSUM="$(jq -r '.["csum-deb"]' <<< "$RELEASE")"
sed -Ei \
-e "s/^(ARG PLEX_VER=).*$/\1$VERSION/" \
-e "s/^(ARG PLEX_SHA=).*$/\1$CHECKSUM/" \
Dockerfile
if ! git diff --quiet --exit-code Dockerfile; then
export GIT_COMMITTER_NAME="Spritsail Bot"
export GIT_COMMITTER_EMAIL="<bot@spritsail.io>"
export GIT_AUTHOR_NAME="$GIT_COMMITTER_NAME"
export GIT_AUTHOR_EMAIL="$GIT_COMMITTER_EMAIL"
git reset --soft
git add -- Dockerfile
git commit \
--no-gpg-sign \
--signoff \
-m "Update to Plex ${VERSION%-*}"
git push origin HEAD
else
>&2 echo No update available
fi