We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d0648b commit 680c1b4Copy full SHA for 680c1b4
1 file changed
.github/workflows/ci_publish.yml
@@ -40,6 +40,16 @@ jobs:
40
- name: Execute notebooks while building HTMLs
41
run: tox -e py312-buildhtml
42
43
+ - name: Zip up the entire directory to upload as an artifact
44
+ run: |
45
+ zip -r full-book.zip .
46
+
47
+ - name: Upload zipped full book artifact
48
+ uses: actions/upload-artifact@v6
49
+ with:
50
+ name: full-book
51
+ path: ./full-book.zip
52
53
- name: Publish
54
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
55
with:
0 commit comments