mirror of
https://github.com/jarulsamy/Plex-Bot.git
synced 2024-08-19 15:01:55 +02:00
15 lines
238 B
Bash
Executable File
15 lines
238 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
VERSION=$(python PlexBot/__version__.py)
|
|
|
|
docker push "jarulsamy/plex-bot:$VERSION"
|
|
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo "Successfully pushed docker image."
|
|
exit 0
|
|
else
|
|
echo "Failed to push docker image." >&2
|
|
exit 1
|
|
fi
|