Skip to content

Commit

Permalink
Change name of output_dir variable
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Dec 19, 2024
1 parent b78c3be commit c118050
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/run-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}' \
Expand Down

0 comments on commit c118050

Please sign in to comment.