mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 01:23:57 +08:00
16 lines
283 B
Bash
Executable file
16 lines
283 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $# -eq 0 ]] ; then
|
|
echo "Missing argument of new version"
|
|
exit 1
|
|
fi
|
|
|
|
VERSION=$1
|
|
SERIES=${VERSION:0:4}-latest
|
|
|
|
docker push zadam/trilium:$VERSION
|
|
docker push zadam/trilium:$SERIES
|
|
|
|
if [[ $1 != *"beta"* ]]; then
|
|
docker push zadam/trilium:latest
|
|
fi
|