From 8b6dea13128e4c36d670e7b461439de8452702fc Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Jun 22 2024 18:29:45 +0000 Subject: chore: 🤖 set THEME_VERSION to v2.51.1-beta.49 --- diff --git a/Makefile b/Makefile index e7ac066..a3b47b0 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +THEME_VERSION := v2.51.1-beta.49 + all: .PHONY: site-l10n @@ -19,7 +21,7 @@ site-server: clean site-sources -v $$PWD/src:/site \ -v $$PWD/public:/public \ -p 0.0.0.0:4000:4000 \ - registry.gitlab.com/centos/artwork/centos-web/jekyll-theme-centos:latest \ + registry.gitlab.com/centos/artwork/centos-web/jekyll-theme-centos:${THEME_VERSION} \ bundle exec jekyll serve -H 0.0.0.0 -p 4000 --config /site/_config.yml -s /site -d /public .PHONY: site @@ -29,7 +31,7 @@ site: --name $@ \ -v $$PWD/src:/site \ -v $$PWD/public:/public \ - registry.gitlab.com/centos/artwork/centos-web/jekyll-theme-centos:latest \ + registry.gitlab.com/centos/artwork/centos-web/jekyll-theme-centos:${THEME_VERSION} \ bundle exec jekyll build --config /site/_config.yml -s /site -d /public .PHONY: clean