mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-12 23:07:06 +00:00
11 lines
160 B
Bash
11 lines
160 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
version=$(<version.txt)
|
||
|
|
||
|
git push origin master
|
||
|
git tag v${version}
|
||
|
git push origin v${version}
|
||
|
./scripts/build-docker.sh
|
||
|
|
||
|
echo "Done ✅"
|