2020-09-10 19:49:33 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
new_tag="$1"
|
|
|
|
|
2021-01-13 14:39:10 +00:00
|
|
|
# Old deploy
|
|
|
|
# sudo docker build . --tag dessalines/lemmy-ui:$new_tag
|
|
|
|
# sudo docker push dessalines/lemmy-ui:$new_tag
|
2020-09-10 19:49:33 +00:00
|
|
|
|
|
|
|
git tag $new_tag
|
|
|
|
git push origin $new_tag
|