github-actions[bot] on gh-pages
Deployed a6565f3e1 with MkDocs β¦ (compare)
squidfunk on master
Updated Indonesian translations⦠(compare)
<div class="result" markdown>
in your sources, is this from insiders too?
margin-top: -1.125em;
, but you have it as well so not sure what's happening
.md-typeset .tabbed-block > .highlight:first-child > pre, .md-typeset .tabbed-block > pre:first-child { margin: 0; }
.result
in combination with tabs in the documentation, so that's definitely a side effect that we need to fix if we'd make it officially supported. Maybe in the future I find some time to do that, but until then you're on your own π The thing is: it's probably only useful for documentation that generates something visually like Material for MkDocs, where you want to show the result as part of the example.
- run: mkdocs gh-deploy --force
name: CI
on:
push:
branches:
- master
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install --upgrade pip && pip install mkdocs mkdocs-gen-files
- run: pip install mkdocs-material
- name: Publish docs
run: mkdocs gh-deploy --force
requirements.txt
You're getting a 403, so it's likely a problem with permissions.
Haven't seen this one yet, though.
Needed personal access token, even on public repo, not sure why is that but solved it with adding this in steps
:
- name: Deploy MkDocs
uses: mhausenblas/mkdocs-deploy-gh-pages@1.24
env:
PERSONAL_TOKEN: ${{ secrets.PERSONAL_TOKEN }}