mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
9 lines
165 B
Bash
9 lines
165 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
if [[ $# -eq 0 ]] ; then
|
||
|
|
echo "Missing argument of new version"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
docker push zadam/trilium:latest
|
||
|
|
docker push zadam/trilium:$1
|