Add API URL injection back and Docker builds.

This commit is contained in:
Paul
2021-08-30 15:24:15 +01:00
parent c370a24fad
commit f6eac9362b
7 changed files with 173 additions and 10 deletions

7
scripts/publish.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/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