We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e77379 commit dfa11cfCopy full SHA for dfa11cf
1 file changed
.github/workflows/deploy-docs.yml
@@ -8,10 +8,10 @@ permissions:
8
jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
- env:
12
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13
steps:
14
- uses: actions/checkout@v4
+ with:
+ fetch-depth: 0
15
- name: Set up Python
16
uses: actions/setup-python@v5
17
with:
@@ -21,4 +21,8 @@ jobs:
21
pip install mkdocs-material
22
- name: Build and Deploy
23
run: |
24
+ git config --global user.name "github-actions[bot]"
25
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
26
mkdocs gh-pages --force
27
+ env:
28
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments