ansible-doctor/Makefile
renovate[bot] 4a2825b06d
chore(deps): update dependency thegeeklab/hugo-geekdoc to v0.47.0 (#737)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[thegeeklab/hugo-geekdoc](https://togithub.com/thegeeklab/hugo-geekdoc)
| minor | `v0.46.0` -> `v0.47.0` |

---

### Release Notes

<details>
<summary>thegeeklab/hugo-geekdoc (thegeeklab/hugo-geekdoc)</summary>

###
[`v0.47.0`](https://togithub.com/thegeeklab/hugo-geekdoc/releases/tag/v0.47.0)

[Compare
Source](https://togithub.com/thegeeklab/hugo-geekdoc/compare/v0.46.0...v0.47.0)

##### v0.47.0 (2024-07-08)

##### Features

- add oc language support
([#&#8203;846](https://togithub.com/thegeeklab/hugo-geekdoc/issues/846))
([`fbf400d`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/fbf400d))

##### Bug Fixes

- **deps:** update dependency katex to v0.16.11
([#&#8203;848](https://togithub.com/thegeeklab/hugo-geekdoc/issues/848))
([`e74233b`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/e74233b))
- **deps:** update dependency uuid to v10
([#&#8203;841](https://togithub.com/thegeeklab/hugo-geekdoc/issues/841))
([`4e81167`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/4e81167))

##### Others

- **deps:** lock file maintenance
([#&#8203;845](https://togithub.com/thegeeklab/hugo-geekdoc/issues/845))
([`fab5fdf`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/fab5fdf))
- **deps:** update dependency npm-run-all2 to v6.2.2
([`a3860e9`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/a3860e9))
- **deps:** update devdeps non-major
([`72c74a0`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/72c74a0))
- **deps:** update devdeps non-major
([`25c7954`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/25c7954))
- **deps:** lock file maintenance
([#&#8203;843](https://togithub.com/thegeeklab/hugo-geekdoc/issues/843))
([`6c51caf`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/6c51caf))
- **deps:** update quay.io/thegeeklab/hugo docker tag to v0.127.0
([#&#8203;840](https://togithub.com/thegeeklab/hugo-geekdoc/issues/840))
([`5b6c182`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/5b6c182))
- **deps:** update devdeps non-major
([`521b326`](https://togithub.com/thegeeklab/hugo-geekdoc/commit/521b326))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/thegeeklab/ansible-doctor).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-15 03:20:50 +02:00

21 lines
484 B
Makefile

# renovate: datasource=github-releases depName=thegeeklab/hugo-geekdoc
THEME_VERSION := v0.47.0
THEME := hugo-geekdoc
BASEDIR := docs
THEMEDIR := $(BASEDIR)/themes
.PHONY: all
all: doc
.PHONY: doc
doc: doc-assets
.PHONY: doc-assets
doc-assets:
mkdir -p $(THEMEDIR)/$(THEME)/ ; \
curl -sSL "https://github.com/thegeeklab/$(THEME)/releases/download/${THEME_VERSION}/$(THEME).tar.gz" | tar -xz -C $(THEMEDIR)/$(THEME)/ --strip-components=1
.PHONY: clean
clean:
rm -rf $(THEMEDIR)