1
0
Fork 0
mirror of https://github.com/revoltchat/revite.git synced 2025-01-17 22:59:22 -05:00
revite/scripts/publish.sh

8 lines
305 B
Bash
Raw Normal View History

#!/bin/bash
version=$(cat VERSION)
docker build -t revoltchat/client:${version} . &&
docker tag revoltchat/client:${version} revoltchat/client:latest &&
docker push revoltchat/client:${version} &&
docker push revoltchat/client:latest