Skip to content

Commit

Permalink
fix(workflow): update conda loading (#736)
Browse files Browse the repository at this point in the history
* update backend url

* fix(workflow): update backend url (#710)

* update https

* update yml

* update deployment settings

* update deployment settings

* load conda environment explicitly
  • Loading branch information
chengzr01 authored Sep 30, 2024
1 parent c1dee06 commit a7b4982
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/aws-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
git reset --hard origin/main
sed -i 's|^base_llm:.*|base_llm: together_ai/Qwen/Qwen1.5-72B-Chat|' ~/research-town/configs/param.yaml
cd backend/
source ~/.bashrc
if [ -f "/home/ubuntu/miniconda3/etc/profile.d/conda.sh" ]; then
. "/home/ubuntu/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/home/ubuntu/miniconda3/bin:$PATH"
fi
conda activate research_town
tmux has-session -t 0 2>/dev/null
if [ $? != 0 ]; then
Expand Down

0 comments on commit a7b4982

Please sign in to comment.