2
0
mirror of https://github.com/spritsail/plex-media-server.git synced 2024-06-14 11:57:23 +00:00
plex-media-server/update.sh
Joe Groocock 48abfda1b6
Revert "Bump Plex build on cron and attempt to push to git"
This reverts commit a09bf8c4ff.

Signed-off-by: Joe Groocock <me@frebib.net>
2021-05-28 10:12:13 +00:00

28 lines
767 B
Bash
Executable File

#!/bin/bash
set -e
RELEASE="$(curl -fsSL https://api.spritsail.io/plex/release | 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