Skip to content

Show photo on small devices #122

Show photo on small devices

Show photo on small devices #122

Workflow file for this run

name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.x
- run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
# - run: pip install mkdocs-git-revision-date-localized-plugin
# Untill my PR is merged
# - run: pip install mkdocs-charts-plugin
- run: pip install git+https://github.com/mgao6767/mkdocs-charts-plugin.git
# - run: pip install mkdocs-git-committers-plugin-2
- run: pip install mkdocs-include-markdown-plugin
- run: pip install mkdocs-rss-plugin
- run: pip install mkdocs-redirects
- run: mkdocs gh-deploy --force
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}