Printenv no longer neaded

pull/310/head
Frostebite 2021-12-21 06:34:11 +00:00
parent a6a24d8378
commit bdc0c7f34e
5 changed files with 3 additions and 7 deletions

4
dist/index.js vendored
View File

@ -2425,7 +2425,6 @@ class BuildStep {
cloud_runner_logger_1.default.logLine('Starting part 2/4 (build unity project)');
yield cloud_runner_state_1.CloudRunnerState.CloudRunnerProviderPlatform.runBuildTask(cloud_runner_state_1.CloudRunnerState.buildGuid, image, [
`
printenv
export GITHUB_WORKSPACE="${cloud_runner_state_1.CloudRunnerState.repoPathFull}"
cp -r "${cloud_runner_state_1.CloudRunnerState.builderPathFull}/dist/default-build-script/" "/UnityBuilderAction"
cp -r "${cloud_runner_state_1.CloudRunnerState.builderPathFull}/dist/entrypoint.sh" "/entrypoint.sh"
@ -2479,7 +2478,6 @@ class CompressionStep {
// Cleanup
yield cloud_runner_state_1.CloudRunnerState.CloudRunnerProviderPlatform.runBuildTask(cloud_runner_state_1.CloudRunnerState.buildGuid, 'alpine', [
`
printenv
apk update -q
apk add zip tree -q
${process.env.DEBUG ? '' : '#'}tree -L 4 "$repoPathFull"
@ -2555,7 +2553,7 @@ class DownloadRepositoryStep {
try {
cloud_runner_logger_1.default.logLine('Starting step 1/4 clone and restore cache');
yield cloud_runner_state_1.CloudRunnerState.CloudRunnerProviderPlatform.runBuildTask(cloud_runner_state_1.CloudRunnerState.buildGuid, image, [
` printenv
`
apk update -q
apk add unzip zip git-lfs jq tree nodejs -q
export GIT_DISCOVERY_ACROSS_FILESYSTEM=1

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -25,7 +25,6 @@ export class BuildStep implements StepInterface {
image,
[
`
printenv
export GITHUB_WORKSPACE="${CloudRunnerState.repoPathFull}"
cp -r "${CloudRunnerState.builderPathFull}/dist/default-build-script/" "/UnityBuilderAction"
cp -r "${CloudRunnerState.builderPathFull}/dist/entrypoint.sh" "/entrypoint.sh"

View File

@ -22,7 +22,6 @@ export class CompressionStep implements StepInterface {
'alpine',
[
`
printenv
apk update -q
apk add zip tree -q
${process.env.DEBUG ? '' : '#'}tree -L 4 "$repoPathFull"

View File

@ -29,7 +29,7 @@ export class DownloadRepositoryStep implements StepInterface {
CloudRunnerState.buildGuid,
image,
[
` printenv
`
apk update -q
apk add unzip zip git-lfs jq tree nodejs -q
export GIT_DISCOVERY_ACROSS_FILESYSTEM=1