seL4 / docs

This is the source of the seL4 docs.

Home Page:https://docs.sel4.systems

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

displayed page modification date incorrect

lsf37 opened this issue · comments

The footer shows site modification and page modification dates, but it looks like they are always the same and might always just be when the site got last generated.

The timestamp is extracted from the git history: https://github.com/seL4/docs/blob/master/Makefile#L33

Looks like the github action for checking out is only doing depth 1 which results in all pages being last modified in the same commit:

    # Number of commits to fetch. 0 indicates all history for all branches and tags.
    # Default: 1
    fetch-depth: ''

Thanks for tracking that down, I'll change it to full depth.