Skip to content

Commit c8d169d

Browse files
authored
Update run_with_env_secrets.py
1 parent 4a4819c commit c8d169d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/scripts/run_with_env_secrets.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def main():
7272
-e RUNNER_ARTIFACT_DIR=/artifacts \
7373
-e RUNNER_DOCS_DIR=/docs \
7474
-e RUNNER_TEST_RESULTS_DIR=/test-results \
75-
--env-file="{ env_file }" \
75+
--env-file="{ os.environ.get('RUNNER_TEMP', '') }/github_env_{ os.environ.get('GITHUB_RUN_ID', '') }" \
7676
`# It is unknown why the container sees a different value for this.` \
7777
-e GITHUB_STEP_SUMMARY \
7878
{ ' '.join([ f'-e {v}' for v in secrets_u_names ]) } \
@@ -87,9 +87,9 @@ def main():
8787
{ os.environ.get('GPU_FLAG', '') } \
8888
-v "{ os.environ.get('GITHUB_WORKSPACE', '') }/{ os.environ.get('REPOSITORY', '') }:/{ os.environ.get('REPOSITORY', 'work') }" \
8989
-v "{ os.environ.get('GITHUB_WORKSPACE', '') }/test-infra:/test-infra" \
90-
-v "{ os.environ.get('RUNNER_TEMP', '') }/artifacts:/artifacts" \
91-
-v "{ os.environ.get('RUNNER_TEMP', '') }/docs:/docs" \
92-
-v "{ os.environ.get('RUNNER_TEMP', '') }/test-results:/test-results" \
90+
-v "{ os.environ.get('RUNNER_ARTIFACT_DIR', '') }:/artifacts" \
91+
-v "{ os.environ.get('RUNNER_DOCS_DIR', '') }:/docs" \
92+
-v "{ os.environ.get('RUNNER_TEST_RESULTS_DIR', '') }:/test-results" \
9393
-v "{ os.environ.get('RUNNER_TEMP', '') }/exec_script:/exec" \
9494
-v "{ os.environ.get('GITHUB_STEP_SUMMARY', '') }":"{ os.environ.get('GITHUB_STEP_SUMMARY', '') }" \
9595
-w /{ os.environ.get('REPOSITORY', 'work') } \

0 commit comments

Comments
 (0)