pull/289/head
Frostebite 2021-08-15 13:58:44 +00:00 committed by GitHub
parent 7fbd0c1297
commit 83babdf162
3 changed files with 21 additions and 1 deletions

10
dist/index.js vendored
View File

@ -2370,6 +2370,16 @@ class RemoteBuilder {
EnvironmentVariable: 'branch',
ParameterValue: this.branchName,
},
{
ParameterKey: 'buildPathFull',
EnvironmentVariable: 'buildPathFull',
ParameterValue: this.buildPathFull,
},
{
ParameterKey: 'projectPathFull',
EnvironmentVariable: 'projectPathFull',
ParameterValue: this.projectPathFull,
},
];
}
static readBuildSecrets(buildSecrets) {

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -294,6 +294,16 @@ class RemoteBuilder {
EnvironmentVariable: 'branch',
ParameterValue: this.branchName,
},
{
ParameterKey: 'buildPathFull',
EnvironmentVariable: 'buildPathFull',
ParameterValue: this.buildPathFull,
},
{
ParameterKey: 'projectPathFull',
EnvironmentVariable: 'projectPathFull',
ParameterValue: this.projectPathFull,
},
];
}