mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-21 22:34:21 +00:00
🔨 Change poetry usage method
This commit is contained in:
parent
6599e7283a
commit
ce3526bf45
2 changed files with 10 additions and 14 deletions
12
.github/workflows/build-sphinx-report.yml
vendored
12
.github/workflows/build-sphinx-report.yml
vendored
|
@ -23,9 +23,8 @@ jobs:
|
|||
- name: "Install backend dependencies"
|
||||
working-directory: backend/
|
||||
run: "poetry install --no-interaction"
|
||||
- name: "Activate Python environment"
|
||||
run: |
|
||||
source $(poetry env list --full-path | cut -f1 -d" ")/bin/activate
|
||||
- name: "Find Poetry Python environment"
|
||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||
- name: "Build HTML document with Sphinx"
|
||||
uses: ammaraskar/sphinx-action@master
|
||||
with:
|
||||
|
@ -54,10 +53,9 @@ jobs:
|
|||
poetry-version: 1.1.11
|
||||
- name: "Install backend dependencies"
|
||||
working-directory: backend/
|
||||
run: "poetry install --no-interaction"
|
||||
- name: "Activate Python environment"
|
||||
run: |
|
||||
source $(poetry env list --full-path | cut -f1 -d" ")/bin/activate
|
||||
run: poetry install --no-interaction
|
||||
- name: "Find Poetry Python environment"
|
||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||
- name: "Install Latex dependencies"
|
||||
run: apt-get update -y && apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
|
||||
- name: "Build Latex document with Sphinx"
|
||||
|
|
12
.github/workflows/build-sphinx-thesis.yml
vendored
12
.github/workflows/build-sphinx-thesis.yml
vendored
|
@ -23,9 +23,8 @@ jobs:
|
|||
- name: "Install backend dependencies"
|
||||
working-directory: backend/
|
||||
run: "poetry install --no-interaction"
|
||||
- name: "Activate Python environment"
|
||||
run: |
|
||||
source $(poetry env list --full-path | cut -f1 -d" ")/bin/activate
|
||||
- name: "Find Poetry Python environment"
|
||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||
- name: "Build HTML document with Sphinx"
|
||||
uses: ammaraskar/sphinx-action@master
|
||||
with:
|
||||
|
@ -54,10 +53,9 @@ jobs:
|
|||
poetry-version: 1.1.11
|
||||
- name: "Install backend dependencies"
|
||||
working-directory: backend/
|
||||
run: "poetry install --no-interaction"
|
||||
- name: "Activate Python environment"
|
||||
run: |
|
||||
source $(poetry env list --full-path | cut -f1 -d" ")/bin/activate
|
||||
run: poetry install --no-interaction
|
||||
- name: "Find Poetry Python environment"
|
||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||
- name: "Install Latex dependencies"
|
||||
run: apt-get update -y && apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
|
||||
- name: "Build Latex document with Sphinx"
|
||||
|
|
Loading…
Reference in a new issue