Skip to content

Commit 4fa9fbb

Browse files
committed
Fixed github action
1 parent 56f32e9 commit 4fa9fbb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/run_complete_llm.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,25 +30,26 @@ jobs:
3030
with:
3131
python-version: '3.11'
3232

33-
- name: Change directory
34-
run: cd llm-complete-guide
35-
3633
- name: Install requirements
34+
working-directory: ./llm-complete-guide
3735
run: |
3836
pip3 install -r requirements.txt
3937
zenml integration install gcp -y
4038
4139
- name: Connect to ZenML server
40+
working-directory: ./llm-complete-guide
4241
run: |
4342
zenml init
4443
zenml connect --url $ZENML_HOST --api-key $ZENML_API_KEY
4544
4645
- name: Set stack (Staging)
46+
working-directory: ./llm-complete-guide
4747
if: ${{ github.base_ref == 'staging' }}
4848
run: |
4949
zenml stack set ${{ env.ZENML_STAGING_STACK }}
5050
5151
- name: Run pipeline (Staging)
52+
working-directory: ./llm-complete-guide
5253
if: ${{ github.base_ref == 'staging' }}
5354
run: |
5455
python run.py --rag --evaluation --no-cache

0 commit comments

Comments
 (0)