mirror of
https://github.com/luzifer-docker/teamspeak3.git
synced 2024-11-08 20:10:01 +00:00
12 lines
232 B
Bash
12 lines
232 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
ver=$(grep -Eo 'TEAMSPEAK_VERSION=([0-9.]+)' Dockerfile | cut -d '=' -f 2)
|
|
|
|
[ -n "${ver}" ] || {
|
|
echo "No version found"
|
|
exit 1
|
|
}
|
|
|
|
git commit -m "Teamspeak Server ${ver}" Dockerfile
|
|
git tag "${ver}"
|