From 933aa486994fe31a56a2c75b981805e205b08d42 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 21 Nov 2021 05:38:31 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Fix=20build=20paths?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-sphinx-report.yml | 8 ++++---- .github/workflows/build-sphinx-thesis.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-sphinx-report.yml b/.github/workflows/build-sphinx-report.yml index 4881015..ffcdae1 100644 --- a/.github/workflows/build-sphinx-report.yml +++ b/.github/workflows/build-sphinx-report.yml @@ -32,13 +32,13 @@ jobs: run: | source $pythonLocation/activate make html - - name: "Create a gzip of the build" - run: "tar -cvzf report/_build/report.html.tar.gz report/_build/html" + - name: "Create a gzipped tarball of the build" + run: tar -cvzf report/build/report.html.tar.gz report/build/html - name: "Upload build artifact" uses: actions/upload-artifact@v2 with: name: "report.html.tar.gz" - path: "report/_build/report.html.tar.gz" + path: "report/build/report.html.tar.gz" latexpdf: name: "Build PDF document" runs-on: ubuntu-latest @@ -72,4 +72,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: "report.pdf" - path: "report/_build/latex/sophon.pdf" + path: "report/build/latex/sophon.pdf" diff --git a/.github/workflows/build-sphinx-thesis.yml b/.github/workflows/build-sphinx-thesis.yml index 49773c8..b8e14ad 100644 --- a/.github/workflows/build-sphinx-thesis.yml +++ b/.github/workflows/build-sphinx-thesis.yml @@ -32,13 +32,13 @@ jobs: run: | source $pythonLocation/activate make html - - name: "Create a gzip of the build" - run: "tar -cvzf thesis/_build/thesis.html.tar.gz thesis/_build/html" + - name: "Create a gzipped tarball of the build" + run: tar -cvzf report/build/report.html.tar.gz report/build/html - name: "Upload build artifact" uses: actions/upload-artifact@v2 with: name: "thesis.html.tar.gz" - path: "thesis/_build/thesis.html.tar.gz" + path: "thesis/build/thesis.html.tar.gz" latexpdf: name: "Build PDF document" runs-on: ubuntu-latest @@ -72,4 +72,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: "thesis.pdf" - path: "thesis/_build/latex/sophon.pdf" + path: "thesis/build/latex/sophon.pdf"