We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84301a commit a2aad48Copy full SHA for a2aad48
.github/workflows/deploy.yml
@@ -41,6 +41,9 @@ jobs:
41
HUGO_ENVIRONMENT: production
42
HUGO_RELATIVEURLS: false
43
run: hugo config && hugo --minify --baseURL '${{ steps.pages.outputs.base_url }}/'
44
+ - uses: actions/setup-node@v5
45
+ - name: pre-render the Graphviz diagrams
46
+ run: npm ci && node ./script/graphviz-ssr.js
47
- uses: actions/upload-pages-artifact@v3
48
with:
49
path: ./public
.github/workflows/pr.yml
@@ -17,6 +17,8 @@ jobs:
17
sudo dpkg -i /tmp/hugo.deb
18
- name: run Hugo to build the pages
19
run: hugo
20
21
+ - run: npm ci && node ./script/graphviz-ssr.js
22
- name: build tar archive
23
run: cd public && tar czvf ../pages.tar.gz *
24
- name: Upload build artifact
0 commit comments