From 1f3bc5e74d4872629da4f89881932209ce8eeb89 Mon Sep 17 00:00:00 2001 From: shockrah Date: Sun, 20 Mar 2022 23:16:12 +0000 Subject: [PATCH] * Using `extends` in builder jobs Ideally this fixes the builder/deploy pipeline for pages but this is still experimental --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e2ae0d9..eebd715 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,13 +8,15 @@ stages: include: - local: 'ci/builders.yml' -build-neocities: &builder +build-neocities: stage: build + extends: .builder script: - hugo --config configs/neocities.toml -build-pages: &builder +build-pages: stage: build + extends: .builder script: - hugo --config configs/pages.toml