lemmy-ui/deploy.sh

16 lines
259 B
Bash
Executable File

#!/bin/bash
set -e
new_tag="$1"
# Old deploy
# sudo docker build . --tag dessalines/lemmy-ui:$new_tag
# sudo docker push dessalines/lemmy-ui:$new_tag
# Upgrade version
yarn version --new-version $new_tag
git push
git tag $new_tag
git push origin $new_tag