Skip to content

Commit cd78195

Browse files
authored
Improve html generation (#206)
* Update process_adoc_to_html.yml add fetch-depth to make sure timestamps can be restored * Renamed ReadMe.html -> index.html * Use "indext.html" as output name * update asciidoc html files [skip ci] * bypass jeckyl this ignores all files in _docs dir otherwise * favicon should be relative * FavIcon not resolved for all pages * update asciidoc html files [skip ci]
1 parent 9e84fd0 commit cd78195

File tree

39 files changed

+49699
-21086
lines changed

39 files changed

+49699
-21086
lines changed

.github/workflows/process_adoc_to_html.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,26 @@ jobs:
1212
# Prevent runs triggered by the create-pull-request bot to avoid loops
1313
if: github.actor != 'github-actions[bot]'
1414
steps:
15-
- uses: actions/checkout@v3
16-
17-
- uses: chetan/git-restore-mtime-action@v2
15+
- name: checkout
16+
uses: actions/checkout@v3
17+
with:
18+
# git-restore-mtime-bare uses the ref log to find the correct timestamp
19+
# for each file. This requires a full git history. The default value (1)
20+
# creates a shallow checkout.
21+
fetch-depth: 0
22+
23+
# Fix timestamps
24+
- name: restore timestamps
25+
uses: chetan/git-restore-mtime-action@v2
1826

1927
- name: Install system packages for diagrams
2028
run: |
2129
sudo apt-get update
2230
sudo apt-get install -y graphviz plantuml default-jre
2331
24-
- uses: actions/setup-ruby@v1
32+
- name: setup ruby
33+
uses: actions/setup-ruby@v1
34+
2535
- name: Install Asciidoctor gems
2636
run: |
2737
gem install asciidoctor

.nojekyll

Whitespace-only changes.

README.html

Lines changed: 0 additions & 902 deletions
This file was deleted.

0 commit comments

Comments
 (0)