Skip to content

Commit

Permalink
report disk space
Browse files Browse the repository at this point in the history
  • Loading branch information
rettigl authored Oct 30, 2023
1 parent 3b61382 commit f714e26
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/autodoc_tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ jobs:
# Execute and convert notebooks
- name: execute notebooks
run: find $GITHUB_WORKSPACE/tutorial -type f -name "*.ipynb" -exec poetry run jupyter-nbconvert --execute --to notebook --inplace {} \;
run: |
df -h
du -h .
find $GITHUB_WORKSPACE/tutorial -type f -name "*.ipynb" -exec poetry run jupyter-nbconvert --execute --to notebook --inplace {} \;
- name: create docs/tutorial directory
run: mkdir -p $GITHUB_WORKSPACE/docs/tutorial
Expand All @@ -55,4 +58,4 @@ jobs:
with:
default_author: github_actions
message: 'Updating tutorial rsts for docs'
add: 'docs/tutorial/'
add: 'docs/tutorial/'

0 comments on commit f714e26

Please sign in to comment.