[FTheoryTools] Fix LaTeX super indices in documentation #2775
Workflow file for this run
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: Cleanup Doc Preview | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
cleanup-doc-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout gh-pages branch | |
uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
- name: Delete preview | |
run: | | |
if [ -d "previews/PR$PRNUM" ]; then | |
git config user.name "Documenter.jl" | |
git config user.email "[email protected]" | |
git rm -rf "previews/PR$PRNUM" | |
git commit -m "delete preview for $PRNUM" | |
git push origin gh-pages:gh-pages | |
fi | |
env: | |
PRNUM: ${{ github.event.number }} | |
# adapted from here: | |
# https://juliadocs.github.io/Documenter.jl/stable/man/hosting/#gh-pages-Branch | |
# without history cleanup |