Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RN test: add foobar1 to ipynb file #2

Merged
merged 6 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/make_html_from_notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
with:
#Only checkout the branch that is being merged into main
ref: ${{ github.head_ref }}
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3'
- name: Installing Packages
run: pip install jupyter nbconvert
- name: Getting only the changed Notebooks
# Gets only the changed files using an action from the marketplace
uses: Ana06/[email protected]
Expand All @@ -33,9 +39,7 @@ jobs:
fi
done
echo "Changed files: ${notebooks[@]}"
if [ ${#notebooks[@]} -eq 0 ]; then
jupyter nbconvert --to html ${notebooks[@]}
fi
jupyter nbconvert --to html ${notebooks[@]}
- name: Push and commit new HTML files
#Commits changes to the branch being merged into main
run: |
Expand Down
Loading