mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 23:35:22 +01:00
Execute pip commands one after the other to find issue
This commit is contained in:
parent
41c1b711c2
commit
b8b0b61e67
1 changed files with 5 additions and 1 deletions
6
.github/workflows/docker-publish.yml
vendored
6
.github/workflows/docker-publish.yml
vendored
|
|
@ -30,10 +30,14 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update -qq
|
sudo apt-get update -qq
|
||||||
sudo apt-get install -qq libpoppler-cpp-dev unpaper tesseract-ocr
|
sudo apt-get install -qq libpoppler-cpp-dev unpaper tesseract-ocr
|
||||||
- name: Upgrade pip, Install dependencies
|
- name: Upgrade pip
|
||||||
run: |
|
run: |
|
||||||
pip install --upgrade pip pipenv sphinx
|
pip install --upgrade pip pipenv sphinx
|
||||||
|
- name: Gather pip requirements
|
||||||
|
run: |
|
||||||
pipenv lock -r > requirements.txt
|
pipenv lock -r > requirements.txt
|
||||||
|
- name: Insall pip requirements
|
||||||
|
run: |
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
- name: Run sphinx
|
- name: Run sphinx
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue