Renovator Bot
88ec313482
All checks were successful
continuous-integration/drone/push Build is passing
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [thegeeklab/hugo-geekblog](https://github.com/thegeeklab/hugo-geekblog) | patch | `v0.10.0` -> `v0.10.1` | --- ### Release Notes <details> <summary>thegeeklab/hugo-geekblog</summary> ### [`v0.10.1`](https://github.com/thegeeklab/hugo-geekblog/releases/v0.10.1) [Compare Source](https://github.com/thegeeklab/hugo-geekblog/compare/v0.10.0...v0.10.1) ##### Changelog ##### [v0.10.1](https://github.com/thegeeklab/hugo-geekblog/compare/v0.10.0...v0.10.1) (2021-05-24) ##### Bug Fixes - remove inline script usage ([#​49](https://github.com/thegeeklab/hugo-geekblog/issues/49)) - improve title and decription handling on error page ##### Features - add sizes 'regular' and 'large' to button shortcode ([#​50](https://github.com/thegeeklab/hugo-geekblog/issues/50)) - add partial head/custom.html for custom page head elements ([#​48](https://github.com/thegeeklab/hugo-geekblog/issues/48)) ##### Others - remove unused font and only preload main fonts ([#​47](https://github.com/thegeeklab/hugo-geekblog/issues/47)) </details> --- ### Configuration 📅 **Schedule**: 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 [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: #11 Co-authored-by: Renovator Bot <renovator@rknet.org> Co-committed-by: Renovator Bot <renovator@rknet.org>
21 lines
483 B
Makefile
21 lines
483 B
Makefile
# renovate: datasource=github-releases depName=thegeeklab/hugo-geekblog
|
|
THEME_VERSION := v0.10.1
|
|
THEME := hugo-geekblog
|
|
BASEDIR := .
|
|
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)
|