1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-09 06:10:41 +00:00
icecast-server/ci/osc/release-config.sh

19 lines
597 B
Bash

if [ "z$OBS_BASES" = "z" ]; then
if [ "z$CI_COMMIT_TAG" != "z" ]; then
if echo $CI_COMMIT_TAG | grep -q '^v[0-9]\+\.[0-9]\+\.[0-9]\+$'; then
export OBS_BASES="$OBS_BASE_RELEASE $OBS_BASE_BETA"
else
export OBS_BASES="$OBS_BASE_BETA"
fi
else
echo "tag variable CI_COMMIT_TAG not defined, please export OBS_BASES accordingly";
exit 1
fi
fi
export ICECAST_VERSION=2.4.99.3
export ICECAST_CI_VERSION=${ICECAST_VERSION/-/+}
export DISABLE_CHANGELOG=1
export RELEASE_AUTHOR="Philipp Schafft <lion@lion.leolix.org>"
export RELEASE_DATETIME=2022-03-13T18:25:33+00:00