mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
10 lines
160 B
Bash
Executable file
10 lines
160 B
Bash
Executable file
#!/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 ✅"
|