mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
11 lines
157 B
Bash
Executable file
11 lines
157 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git submodule update --remote
|
|
git add lemmy-docs
|
|
git commit -m"Updating docs"
|
|
git push
|
|
|
|
new_tag="$1"
|
|
|
|
git tag $new_tag
|
|
git push origin $new_tag
|