Skip to content

Commit

Permalink
ci: force-push .nojekyll to force re-deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewiscowles1986 committed Mar 31, 2024
1 parent 23ce151 commit 84f7329
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: documentation
on: [push, pull_request, workflow_dispatch]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.ref }}
cancel-in-progress: true

permissions:
Expand Down Expand Up @@ -42,3 +42,11 @@ jobs:
publish_dir: docs/_build/html
destination_dir: ./
keep_files: true
- name: force-redeployment
run: |
git fetch --all
git checkout gh-pages
git pull --ff-only
touch .nojekyll
git add -f .nojekyll
git commit -am "docs: force redeploy" --author="GitHub Actions Bot <[email protected]>"

0 comments on commit 84f7329

Please sign in to comment.