Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

fetch all comits when building docs #157

Merged
merged 2 commits into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # fetch all commits/branches
- uses: actions/setup-python@v4
with:
python-version: 3.x
Expand All @@ -31,6 +33,6 @@ jobs:
- name: Install dependencies
run: pip install mkdocs-material pymdown-extensions pillow cairosvg mike
- name: Build docs
run: mike deploy --push --ignore-remote-status --update-aliases ${{ env.plugin_version }} latest
run: mike deploy --push --update-aliases ${{ env.plugin_version }} latest
- name: Set default docs
run: mike set-default --push --ignore-remote-status latest
run: mike set-default --push latest
Loading