mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 01:59:56 +00:00
10 lines
193 B
Bash
10 lines
193 B
Bash
|
#!/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
|