Eliminate more spelling differences between American and British English #2075
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@v3 | |
with: | |
ref: gh-pages | |
- name: Delete preview | |
run: | | |
if [ -d "previews/PR$PRNUM" ]; then | |
git config user.name "Documenter.jl" | |
git config user.email "documenter@juliadocs.github.io" | |
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 |