mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
9 lines
No EOL
175 B
Bash
Executable file
9 lines
No EOL
175 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $# -eq 0 ]] ; then
|
|
echo "Missing argument of new version"
|
|
exit 1
|
|
fi
|
|
|
|
sudo docker push zadam/trilium:latest
|
|
sudo docker push zadam/trilium:$1 |