Update pages.csv #106
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 website | |
on: [push, pull_request] | |
jobs: | |
quarto-ubuntu: | |
runs-on: Ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Getting the docker | |
run: | | |
docker pull gvegayon/phs7045:latest | |
- name: Render | |
run: | | |
docker run -i --rm -v$(pwd):/home/docs -w/home/docs gvegayon/phs7045:latest make -B README.md | |
- name: Commit results | |
run: | | |
git config --local user.name "$GITHUB_ACTOR" | |
git config --local user.email "[email protected]" | |
git add docs/* || echo Nothing to be added | |
git commit -a -m 'Re-build examples' || echo Nothing has changed | |
git push origin || echo "No changes to commit" |