Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update quay.io/thegeeklab/hugo docker tag to v0.136.5 #594

Merged
merged 3 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .lighthouserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ci:
- http://localhost/404.html
- http://localhost/posts/usage/getting-started/
settings:
chromeFlags: "--no-sandbox"
chromeFlags: "--no-sandbox --headless --disable-dev-shm-usage"
onlyCategories: ["performance", "accessibility", "best-practices", "seo"]
skipAudits:
[
Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ steps:
- event: [pull_request]

- name: build
image: quay.io/thegeeklab/hugo:0.133.0
image: quay.io/thegeeklab/hugo:0.136.5
commands:
- hugo --panicOnWarning -s exampleSite/

Expand Down
2 changes: 1 addition & 1 deletion .woodpecker/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ steps:
FORCE_COLOR: "true"

- name: testbuild
image: quay.io/thegeeklab/hugo:0.133.0
image: quay.io/thegeeklab/hugo:0.136.5
commands:
- mkdir -p exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/${CI_REPO_NAME}
- hugo --panicOnWarning -s exampleSite/ -b http://localhost:8000/
Expand Down
3 changes: 2 additions & 1 deletion exampleSite/config/_default/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ enableGitInfo: true
timeout: 180000
pluralizeListTitles: false

paginate: 5
pagination:
pagerSize: 5

markup:
goldmark:
Expand Down
2 changes: 2 additions & 0 deletions exampleSite/content/posts/asciidoc/admonition-icons.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ date = 2020-06-22T20:00:00+02:00

By default, the admonition is rendered with a plain text label. To enable font icons the document attribute `:icons: font` need to be set.

<!--more-->

== Example

[NOTE]
Expand Down
4 changes: 4 additions & 0 deletions exampleSite/content/posts/asciidoc/admonitions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ date = 2020-06-22T20:00:00+02:00
:toc:
:toclevels: 2

AsciiDoc admonitions are special callout blocks that highlight important information in documentation using distinct visual styles and icons.

<!--more-->

{{< toc >}}

== Admonition types
Expand Down
8 changes: 6 additions & 2 deletions exampleSite/content/posts/usage/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ baseURL = "http://localhost"
title = "Geekblog"
theme = "hugo-geekblog"

paginate = 5
[pagination]
pagerSize = 5

pluralizeListTitles = false

# Required to get well formatted code blocks
Expand Down Expand Up @@ -157,7 +159,9 @@ baseURL: "http://localhost"
title: "Geekblog"
theme: "hugo-geekblog"

paginate: 5
pagination:
pagerSize: 5

pluralizeListTitles: false

# Required to get well formatted code blocks
Expand Down