pull/289/head
Frostebite 2021-08-15 20:12:39 +00:00 committed by GitHub
parent b663c25ec1
commit bf8de86954
3 changed files with 7 additions and 5 deletions

4
dist/index.js vendored
View File

@ -2343,9 +2343,9 @@ class RemoteBuilder {
core.info('Starting step 4/4 upload build to s3');
yield this.RemoteBuilderProviderPlatform.runBuildTask(this.buildId, 'amazon/aws-cli', [
`
aws s3 cp ${this.buildId}/build-${this.buildId}.zip s3://game-ci-storage/
aws s3 cp ${this.buildId}/build-${this.buildId}.zip "s3://${this.buildParams.awsBaseStackName}/"
# no need to upload Library cache for now
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://game-ci-storage/"
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://${this.buildParams.awsBaseStackName}/"
${this.SteamDeploy ? '#' : ''} rm -r ${this.buildId}
`,
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, RemoteBuilder.readUploadArtifactEnvironmentVariables(), RemoteBuilder.readUploadArtifactsSecrets());

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -206,9 +206,11 @@ class RemoteBuilder {
'amazon/aws-cli',
[
`
aws s3 cp ${this.buildId}/build-${this.buildId}.zip s3://game-ci-storage/
aws s3 cp ${this.buildId}/build-${this.buildId}.zip "s3://${this.buildParams.awsBaseStackName}/"
# no need to upload Library cache for now
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://game-ci-storage/"
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://${
this.buildParams.awsBaseStackName
}/"
${this.SteamDeploy ? '#' : ''} rm -r ${this.buildId}
`,
],