From c1180509d4908689c9b514e08f2c7212a22d6a8f Mon Sep 17 00:00:00 2001 From: Raunak Bhagat Date: Thu, 19 Dec 2024 13:11:59 -0800 Subject: [PATCH] Change name of output_dir variable --- .github/workflows/run-cluster.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-cluster.yaml b/.github/workflows/run-cluster.yaml index 4b070d1cce..479c4cf1c9 100644 --- a/.github/workflows/run-cluster.yaml +++ b/.github/workflows/run-cluster.yaml @@ -85,10 +85,10 @@ jobs: uv v source .venv/bin/activate uv pip install ray[default] boto3 - output_dir=/tmp/outputs - mkdir -p $output_dir - echo "Output dir is set to $output_dir" - echo "output_dir=$output_dir" >> $GITHUB_OUTPUT + GHA_OUTPUT_DIR=/tmp/outputs + mkdir -p $GHA_OUTPUT_DIR + echo "Output dir is set to $GHA_OUTPUT_DIR" + echo "GHA_OUTPUT_DIR=$GHA_OUTPUT_DIR" >> $GITHUB_ENV - name: Dynamically update ray config file run: | source .venv/bin/activate @@ -125,6 +125,7 @@ jobs: echo 'Invalid command submitted; command cannot be empty' exit 1 fi + echo "Output dir: $GHA_OUTPUT_DIR" python .github/ci-scripts/job_runner.py \ --working-dir='${{ inputs.working_dir }}' \ --entrypoint-script='${{ inputs.entrypoint_script }}' \