mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-08 09:34:16 +00:00
11 lines
188 B
Bash
Executable file
11 lines
188 B
Bash
Executable file
#!/bin/bash
|
|
|
|
new_tag="$1"
|
|
|
|
# Old deploy
|
|
# sudo docker build . --tag dessalines/lemmy-ui:$new_tag
|
|
# sudo docker push dessalines/lemmy-ui:$new_tag
|
|
|
|
git tag $new_tag
|
|
git push origin $new_tag
|