mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-29 01:38:11 +01:00
fix(ci/cd): remove hardcoded absolute path in GitHub Actions workflow
Fixes the error: "cd: /home/user/IntelliDocs-ngx: No such file or directory"
Changes:
- Removed hardcoded absolute path `/home/user/IntelliDocs-ngx` from line 48
- After `actions/checkout@v4`, the runner is already in the project directory
- Using the implicit `${{ github.workspace }}` is the standard practice
This fixes the workflow failure in the "Install Python dependencies" step
of the "test-ml-dependencies" job.
Issue: GitHub Actions runners don't have this local development path
Solution: Rely on the default working directory set by actions/checkout
This commit is contained in:
parent
6d350b42ef
commit
463c677bec
1 changed files with 0 additions and 1 deletions
1
.github/workflows/docker-intellidocs.yml
vendored
1
.github/workflows/docker-intellidocs.yml
vendored
|
|
@ -45,7 +45,6 @@ jobs:
|
|||
|
||||
- name: Install Python dependencies
|
||||
run: |
|
||||
cd /home/user/IntelliDocs-ngx
|
||||
uv sync --all-extras
|
||||
|
||||
- name: Test ML/OCR imports
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue