2021-02-04 19:55:58 +00:00
|
|
|
#!/bin/bash
|
2021-03-14 03:56:24 +00:00
|
|
|
|
2021-03-14 16:18:30 +00:00
|
|
|
git submodule update --remote
|
|
|
|
git add lemmy-docs
|
|
|
|
git commit -m"Updating docs"
|
|
|
|
git push
|
|
|
|
|
2021-03-14 03:56:24 +00:00
|
|
|
new_tag="$1"
|
|
|
|
|
|
|
|
git tag $new_tag
|
|
|
|
git push origin $new_tag
|