~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website

ci(global): update CI image tags to use latest commit builds

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>

Changed files
+4 -5
bin
+1 -1
.gitlab-ci.yml
···
# The Docker image that will be used to build your app
image:
-
name: quay.io/ajhalili2006/mkdocs-material-build-ci:nightly
+
name: quay.io/ajhalili2006/mkdocs-material-build-ci:commit-b9683f870d90ffe1a6c2d4d22c69fb8e99322e17
stages:
- build
+1 -1
.gitpod.yml
···
checkoutLocation: tildeweb-ajhalili2006
-
image: ghcr.io/ajhalili2006/ajhalili2006.github.io/devenv:commit-8e8a1e4d9dea4af2ffcbe874f44617b7b425788d
+
image: ghcr.io/ajhalili2006/ajhalili2006.github.io/devenv:commit-b9683f870d90ffe1a6c2d4d22c69fb8e99322e17
tasks:
- init: |
+2 -3
bin/build.sh
···
FF_GENERATE_SOCIAL_CARDS=${FF_GENERATE_SOCIAL_CARDS:-"true"}
if [[ ! -d "$PWD/.venv" && $SKIP_VENV_SETUP == "" ]]; then
-
python3 -m venv $PWD/.venv
-
$PWD/.venv/bin/pip3 install -r requirements.txt --upgrade
-
$PWD/.venv/bin/mkdocs build -d "$TARGET_DIR"
+
pipenv install -r requirements.txt
+
pipenv run -- mkdocs build -d "$TARGET_DIR"
else
pip3 install -r requirements.txt --upgrade
mkdocs build -d "$TARGET_DIR"