This repository was archived by the owner on Oct 30, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
unify-release-build-task/src/models Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -28,10 +28,9 @@ export default class AzureDevOpsConfiguration implements IAzureDevOpsConfigurati
2828 this . definition5 = variableManager . getInput ( 'definition5' , false ) ! ;
2929 this . releaseOnCancel = variableManager . getBooleanInput ( 'releaseOnCancel' , true ) ! ;
3030 this . releaseOnError = variableManager . getBooleanInput ( 'releaseOnError' , true ) ! ;
31- this . teamFoundationCollectionUri = variableManager . getVariable ( "SYSTEM_TEAMFOUNDATIONCOLLECTIONURI " ) ! ;
32- this . teamFoundationProject = variableManager . getVariable ( "SYSTEM_TEAMPROJECT " ) ! ;
33- this . accessToken = variableManager . getVariable ( "SYSTEM_ACCESSTOKEN " ) ! ;
34- this . currentBuildId = parseInt ( variableManager . getVariable ( "BUILD_BUILDID " ) ! ) ;
31+ this . teamFoundationCollectionUri = variableManager . getVariable ( "System.TeamFoundationCollectionUri " ) ! ;
32+ this . teamFoundationProject = variableManager . getVariable ( "System.TeamProject " ) ! ;
33+ this . accessToken = variableManager . getVariable ( "System.AccessToken " ) ! ;
34+ this . currentBuildId = parseInt ( variableManager . getVariable ( "Build.BuildId " ) ! ) ;
3535 }
36-
3736}
You can’t perform that action at this time.
0 commit comments