DEV-Website/.gitlab-ci.yml
JirR02 a433334470
Some checks failed
Theme Update / update-theme (push) Has been cancelled
DEV Website V.1.0.0
2025-03-28 10:44:06 +01:00

25 lines
420 B
YAML

image: registry.gitlab.com/pages/hugo/hugo_extended:latest
default:
before_script:
- apk add --update --no-cache git go nodejs npm
- hugo mod tidy
- hugo mod npm pack
- npm install
test:
script:
- hugo
rules:
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
pages:
script:
- hugo
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH