mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
Add release script
This commit is contained in:
parent
4c26d66177
commit
d6484ba8e9
1 changed files with 10 additions and 0 deletions
10
scripts/release.sh
Executable file
10
scripts/release.sh
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/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 ✅"
|
Loading…
Reference in a new issue