mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 06:44:21 +00:00
🔨 The Actions parser didn't like that
This commit is contained in:
parent
9d23a3b25c
commit
d7c4eff546
2 changed files with 8 additions and 16 deletions
12
.github/workflows/build-sphinx-report.yml
vendored
12
.github/workflows/build-sphinx-report.yml
vendored
|
@ -43,6 +43,8 @@ jobs:
|
|||
name: "Build PDF document"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Update apt repositories"
|
||||
run: sudo apt-get update -y
|
||||
- name: "Checkout repository"
|
||||
uses: actions/checkout@v2
|
||||
- name: "Setup Python"
|
||||
|
@ -53,20 +55,14 @@ jobs:
|
|||
uses: abatilo/actions-poetry@v2.0.0
|
||||
with:
|
||||
poetry-version: 1.1.11
|
||||
- name: "Install LaTeX packages"
|
||||
run: sudo apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
|
||||
- name: "Install backend dependencies"
|
||||
working-directory: backend/
|
||||
run: poetry install --no-interaction
|
||||
- name: "Find Poetry Python environment"
|
||||
working-directory: backend/
|
||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||
- name: "Install LaTeX dependencies"
|
||||
run: >
|
||||
sudo apt-get update -y &&
|
||||
sudo apt-get install -y
|
||||
latexmk
|
||||
texlive-latex-recommended
|
||||
texlive-latex-extra
|
||||
texlive-fonts-recommended
|
||||
- name: "Build LaTeX document with Sphinx"
|
||||
working-directory: report/
|
||||
run: |
|
||||
|
|
12
.github/workflows/build-sphinx-thesis.yml
vendored
12
.github/workflows/build-sphinx-thesis.yml
vendored
|
@ -43,6 +43,8 @@ jobs:
|
|||
name: "Build PDF document"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Update apt repositories"
|
||||
run: sudo apt-get update -y
|
||||
- name: "Checkout repository"
|
||||
uses: actions/checkout@v2
|
||||
- name: "Setup Python"
|
||||
|
@ -53,20 +55,14 @@ jobs:
|
|||
uses: abatilo/actions-poetry@v2.0.0
|
||||
with:
|
||||
poetry-version: 1.1.11
|
||||
- name: "Install LaTeX packages"
|
||||
run: sudo apt-get install -y latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
|
||||
- name: "Install backend dependencies"
|
||||
working-directory: backend/
|
||||
run: poetry install --no-interaction
|
||||
- name: "Find Poetry Python environment"
|
||||
working-directory: backend/
|
||||
run: echo "pythonLocation=$(poetry env list --full-path | cut -f1 -d' ')/bin" >> $GITHUB_ENV
|
||||
- name: "Install LaTeX dependencies"
|
||||
run: >
|
||||
sudo apt-get update -y &&
|
||||
sudo apt-get install -y
|
||||
latexmk
|
||||
texlive-latex-recommended
|
||||
texlive-latex-extra
|
||||
texlive-fonts-recommended
|
||||
- name: "Build LaTeX document with Sphinx"
|
||||
working-directory: thesis/
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue