diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 91cb81d..1e85339 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,20 +10,14 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: Configure Git Credentials - run: | - git config user.name github-actions[bot] - git config user.email 41898282+github-actions[bot]@users.noreply.github.com - - uses: actions/setup-python@v5 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 with: python-version: 3.x - - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV - - uses: actions/cache@v4 + - uses: actions/cache@v2 with: - key: mkdocs-material-${{ env.cache_id }} + key: ${{ github.ref }} path: .cache - restore-keys: | - mkdocs-material- - - run: pip install mkdocs-material - - run: mkdocs gh-deploy --force + - run: pip install mkdocs-material + - run: pip install pillow cairosvg + - run: mkdocs gh-deploy --force \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index 9e48764..1861eaa 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -42,4 +42,9 @@ markdown_extensions: - pymdownx.details - pymdownx.superfences - pymdownx.mark - - attr_list \ No newline at end of file + - attr_list + +extra: + social: + - icon: fontawesome/brands/github-alt + link: https://github.com/ouslan \ No newline at end of file