Update git release vars [skip tests] [internal enterprise release 2.7.3-A1 2.7.3-SNAPSHOT]

This commit is contained in:
ehardon
2020-10-20 12:22:30 +03:00
parent f552314c65
commit 3b8f419e6a
2 changed files with 4 additions and 4 deletions

View File

@@ -47,8 +47,8 @@
</server>
<server>
<id>github</id>
<username>${env.GITHUB_USERNAME}</username>
<password>${env.GITHUB_API_TOKEN}</password>
<username>${env.GIT_USERNAME}</username>
<password>${env.GIT_PASSWORD}</password>
</server>
<server>
<id>alfresco-internal</id>

View File

@@ -20,8 +20,8 @@ if [ -z ${RELEASE_VERSION} ] || [ -z ${DEVELOPMENT_VERSION} ];
exit 1
else
mvn --batch-mode \
-Dusername="${GITHUB_USERNAME}" \
-Dpassword="${GITHUB_PASSWORD}" \
-Dusername="${GIT_USERNAME}" \
-Dpassword="${GIT_PASSWORD}" \
-DreleaseVersion=${RELEASE_VERSION} \
-DdevelopmentVersion=${DEVELOPMENT_VERSION} \
-DskipTests -D${release_type} -DuseReleaseProfile=false \