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 ca10bb9 commit afcc187Copy full SHA for afcc187
.github/workflows/ci.yml
@@ -7,9 +7,13 @@ jobs:
7
deploy:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v2
11
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
+ with:
12
+ token: ${{ secrets.GH_TOKEN }}
13
+ - uses: actions/setup-python@v4
14
with:
15
python-version: 3.x
16
- run: pip install mkdocs-material
17
+ - run: git config --global user.name "GitHub Actions"
18
+ - run: git config --global user.email "[email protected]"
19
- run: mkdocs gh-deploy --force
0 commit comments