Skip to content

Commit

Permalink
Add CleanupDocPreview CI action (#246)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens authored Nov 17, 2023
1 parent cdca561 commit 0f84999
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/CleanupDocPreview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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 "[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

0 comments on commit 0f84999

Please sign in to comment.