mirror of
https://github.com/element-hq/dendrite.git
synced 2025-09-15 05:32:25 +03:00
7 lines
124 B
Bash
Executable file
7 lines
124 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
TAG=${1:-latest}
|
|
|
|
echo "Pushing tag '${TAG}'"
|
|
|
|
docker push ghcr.io/element-hq/dendrite-monolith:${TAG}
|