1
Fork 0
mirror of https://github.com/Steffo99/sophon.git synced 2024-12-22 06:44:21 +00:00

🔨 Create a gzip, not extract!

This commit is contained in:
Steffo 2021-11-21 05:28:01 +01:00
parent f5be0f3e5c
commit 9d23a3b25c
Signed by: steffo
GPG key ID: 6965406171929D01
2 changed files with 2 additions and 2 deletions

View file

@ -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:

View file

@ -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: