review comments

pull/524/head
Frostebite 2023-03-19 01:04:40 +00:00
parent 00317d7cda
commit cb3f6df834
5 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: eu-west-2
AWS_BASE_STACK_NAME: game-ci-team-pipelines
AWS_STACK_NAME: game-ci-team-pipelines
CLOUD_RUNNER_BRANCH: ${{ github.ref }}
DEBUG: true
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}

View File

@ -140,7 +140,7 @@ inputs:
description:
'[CloudRunner] Run a custom job instead of the standard build automation for cloud runner (in yaml format with the
keys image, secrets (name, value object array), command line string)'
awsBaseStackName:
awsStackName:
default: 'game-ci'
required: false
description: '[CloudRunner] The Cloud Formation stack name that must be setup before using this option.'

2
dist/index.js generated vendored
View File

@ -850,7 +850,7 @@ class CloudRunnerOptions {
// Aws
// ### ### ###
static get awsStackName() {
return CloudRunnerOptions.getInput('awsBaseStackName') || 'game-ci';
return CloudRunnerOptions.getInput('awsStackName') || 'game-ci';
}
// ### ### ###
// K8s

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -200,7 +200,7 @@ class CloudRunnerOptions {
// ### ### ###
static get awsStackName() {
return CloudRunnerOptions.getInput('awsBaseStackName') || 'game-ci';
return CloudRunnerOptions.getInput('awsStackName') || 'game-ci';
}
// ### ### ###