Merge branch 'master' of github.com:iobis/hackathon #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Render Notebooks and Update README | |
on: | |
push: | |
paths: | |
- 'notebooks/R/**' | |
- 'notebooks/Python/**' | |
pull_request: | |
paths: | |
- 'notebooks/R/**' | |
- 'notebooks/Python/**' | |
jobs: | |
render_and_update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Set up R environment | |
- name: Set up R | |
uses: r-lib/actions/setup-r@v2 | |
# Install required R packages (knitr and rmarkdown) | |
- name: Install R dependencies | |
run: | | |
R -e "install.packages('knitr')" | |
R -e "install.packages('rmarkdown')" | |
# Install necessary dependencies | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
pip install nbconvert selenium webdriver-manager quarto-cli duckdb pyarrow seaborn lonboard geopandas | |
# Render the added/changed files | |
- name: Render and take screenshots | |
run: | | |
python .github/scripts/render_and_screenshot.py | |
# Commit changes (screenshots and updated README) | |
- name: Commit and push changes | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "[email protected]" | |
git add notebooks/screenshots | |
git add notebooks/README.md | |
git commit -m "Auto update README with new files and screenshots" | |
git push |