mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-28 23:31:14 +00:00
16 lines
354 B
Bash
Executable file
16 lines
354 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
new_tag="$1"
|
|
|
|
# Old deploy
|
|
# sudo docker build . --tag dessalines/lemmy-ui:$new_tag --platform=linux/amd64 --push
|
|
# sudo docker build . --tag dessalines/lemmy-ui:$new_tag --platform=linux/amd64
|
|
# sudo docker push dessalines/lemmy-ui:$new_tag
|
|
|
|
# Upgrade version
|
|
npm version $new_tag
|
|
git push
|
|
|
|
git tag $new_tag
|
|
git push origin $new_tag
|