lemmy-ui/deploy.sh

10 lines
193 B
Bash
Raw Normal View History

2020-09-10 19:49:33 +00:00
#!/bin/bash
new_tag="$1"
sudo docker build . --tag dessalines/lemmy-isomorphic-ui:$new_tag
sudo docker push dessalines/lemmy-isomorphic-ui:$new_tag
git tag $new_tag
git push origin $new_tag