From 9d23a3b25c57a6f1c6bfd551eb1dd13662b8c352 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 21 Nov 2021 05:28:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Create=20a=20gzip,=20not=20extra?= =?UTF-8?q?ct!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-sphinx-report.yml | 2 +- .github/workflows/build-sphinx-thesis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-sphinx-report.yml b/.github/workflows/build-sphinx-report.yml index 1c8a74a..18fad18 100644 --- a/.github/workflows/build-sphinx-report.yml +++ b/.github/workflows/build-sphinx-report.yml @@ -33,7 +33,7 @@ jobs: source $pythonLocation/activate make html - name: "Create a gzip of the build" - run: "tar -xvzf report/_build/report.html.tar.gz report/_build/html" + run: "tar -cvzf report/_build/report.html.tar.gz report/_build/html" - name: "Upload build artifact" uses: actions/upload-artifact@v2 with: diff --git a/.github/workflows/build-sphinx-thesis.yml b/.github/workflows/build-sphinx-thesis.yml index 624c9c7..c749cb2 100644 --- a/.github/workflows/build-sphinx-thesis.yml +++ b/.github/workflows/build-sphinx-thesis.yml @@ -33,7 +33,7 @@ jobs: source $pythonLocation/activate make html - name: "Create a gzip of the build" - run: "tar -xvzf thesis/_build/thesis.html.tar.gz thesis/_build/html" + run: "tar -cvzf thesis/_build/thesis.html.tar.gz thesis/_build/html" - name: "Upload build artifact" uses: actions/upload-artifact@v2 with: