lemmy-ui/deploy.sh

10 lines
171 B
Bash
Raw Normal View History

2020-09-10 19:49:33 +00:00
#!/bin/bash
new_tag="$1"
2020-09-15 17:22:50 +00:00
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