Skip to content

Commit c681551

Browse files
authored
Merge pull request #257 from yuvipanda/no-zip
Don't zip up the upload to github artifacts
2 parents dd9b57d + 69d0026 commit c681551

1 file changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/ci_publish.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,13 @@ jobs:
4040
- name: Execute notebooks while building HTMLs
4141
run: tox -e py312-buildhtml
4242

43-
- name: Zip up the entire directory to upload as an artifact
44-
# Run this even if previous step fails, so we can preview the run output
45-
if: always()
46-
run: |
47-
# Zip up the full _build/* directory, so jupyterbook.pub can render them
48-
# In the future, we should be able to ship just our notebooks + the execution outputs
49-
zip -r full-book.zip _build/*
50-
51-
- name: Upload zipped full book artifact
43+
- name: Upload full book artifact
5244
uses: actions/upload-artifact@v6
5345
# Run this even if previous step fails, so we can preview the run output
5446
if: always()
5547
with:
56-
name: full-book
57-
path: ./full-book.zip
48+
name: full-built-book
49+
path: ./_build
5850

5951
- name: Publish
6052
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0

0 commit comments

Comments
 (0)