Skip to content

chore: add aranui favicon (#168) #158

chore: add aranui favicon (#168)

chore: add aranui favicon (#168) #158

Workflow file for this run

name: ci
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
## all history is needed for `mkdocs-git-revision-date-localized-plugin`
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.11
cache: "pip"
- run: pip install -r ./requirements.txt
## refresh the cache daily
- run: echo "cache_id=$(date --utc '+%F')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: mkdocs gh-deploy --force
env:
GA_MEASUREMENT_ID: ${{ secrets.GA_MEASUREMENT_ID }}