Skip to content
Snippets Groups Projects
Commit f8c8633b authored by Rodrigo Nascimento's avatar Rodrigo Nascimento
Browse files

Fix versions and add build number to develop build

parent 10dc2c56
No related branches found
No related tags found
No related merge requests found
FROM rocketchat/base:4 FROM rocketchat/base:4
ENV RC_VERSION 0.56.0-develop ENV RC_VERSION 0.57.0-develop
MAINTAINER buildmaster@rocket.chat MAINTAINER buildmaster@rocket.chat
......
...@@ -21,7 +21,7 @@ const pkgdef :Spk.PackageDefinition = ( ...@@ -21,7 +21,7 @@ const pkgdef :Spk.PackageDefinition = (
appVersion = 62, # Increment this for every release. appVersion = 62, # Increment this for every release.
appMarketingVersion = (defaultText = "0.56.0-develop"), appMarketingVersion = (defaultText = "0.57.0-develop"),
# Human-readable representation of appVersion. Should match the way you # Human-readable representation of appVersion. Should match the way you
# identify versions of your app in documentation and marketing. # identify versions of your app in documentation and marketing.
......
export ARTIFACT_NAME="$(meteor npm run version --silent)" if [[ $TRAVIS_BRANCH ]]
then
export ARTIFACT_NAME="$(meteor npm run version --silent).$TRAVIS_BUILD_NUMBER"
else
export ARTIFACT_NAME="$(meteor npm run version --silent)"
fi
...@@ -17,7 +17,7 @@ elif [[ $TRAVIS_TAG ]]; then ...@@ -17,7 +17,7 @@ elif [[ $TRAVIS_TAG ]]; then
RC_VERSION=$TRAVIS_TAG RC_VERSION=$TRAVIS_TAG
else else
CHANNEL=edge CHANNEL=edge
RC_VERSION=0.56.0-develop RC_VERSION=0.57.0-develop
fi fi
echo "Preparing to trigger a snap release for $CHANNEL channel" echo "Preparing to trigger a snap release for $CHANNEL channel"
......
{ {
"name": "Rocket.Chat", "name": "Rocket.Chat",
"description": "The Ultimate Open Source WebChat Platform", "description": "The Ultimate Open Source WebChat Platform",
"version": "0.56.0-develop", "version": "0.57.0-develop",
"author": { "author": {
"name": "Rocket.Chat", "name": "Rocket.Chat",
"url": "https://rocket.chat/" "url": "https://rocket.chat/"
......
{ {
"version": "0.56.0-develop" "version": "0.57.0-develop"
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment