Commit aeeacbcf authored by Carlos Juliano Viana's avatar Carlos Juliano Viana
Browse files

Merge branch 'developer' into 'master'

[SOMA-4310] Adicionando a revisão do rockspec ao gerar uma nova release

See merge request !46
1 merge request!46[SOMA-4310] Adicionando a revisão do rockspec ao gerar uma nova release
Pipeline #33180 passed with stages
in 1 minute and 11 seconds
Showing with 9 additions and 6 deletions
+9 -6
......@@ -15,6 +15,7 @@ fi
RELEASE=$1
SNAPSHOT=$2
ROCKSPEC_REVISION=1
checkIsMaster()
{
......@@ -56,7 +57,7 @@ renameRockSpecs()
stageRockSpecs()
{
# Acrescenta os removidos
# Acrescenta os removidos
git status | grep "deleted" | awk '{print "git add "$2}' | sh -
# Acrescenta os novos
git add *.rockspec
......@@ -66,13 +67,14 @@ stageRockSpecs()
releaseVersion()
{
echo "[..] release version $RELEASE..."
changeRockSpecs $RELEASE
renameRockSpecs $RELEASE
newVersion="$RELEASE-$ROCKSPEC_REVISION"
changeRockSpecs $newVersion
renameRockSpecs $newVersion
stageRockSpecs
git commit -m "[sgarest-daemon release] prepare release $RELEASE" && \
git tag -a $RELEASE -m "Release version $RELEASE." && \
git push --follow-tags && \
echo "[ok]"
echo "[ok]"
}
nextSnapshotVersion()
......@@ -87,9 +89,10 @@ nextSnapshotVersion()
}
checkIsMaster
releaseVersion
nextSnapshotVersion
releaseVersion
nextSnapshotVersion
echo "Success".
exit 0;
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment