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 b5bdb0b commit 2631841Copy full SHA for 2631841
.github/workflows/deploy.yml
@@ -22,11 +22,13 @@ jobs:
22
run: |
23
python -m pip install --upgrade pip setuptools
24
python -m pip install -U -r requirements.txt
25
- - name: Deploy Files
+ - name: Prepare git client
26
27
git config user.name "github-actions[bot]" # We can use the Username and E-Mail of GitHub Actions for Git.
28
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
29
git remote add repo "https://github.com/mobile-coding-hub/mobile-coding-hub.github.io.git"
30
git fetch repo && git fetch -u repo docs:docs
31
+ - name: Deploy Docs
32
+ run: |
33
python -m mkdocs gh-deploy --clean --remote-name repo --remote-branch master
34
git push repo master
0 commit comments