mirror of https://gitlab.com/curben/blog
62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
image: node:alpine # Use latest version of Node.js on Alpine
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
variables:
|
|
NODE_ENV: "production"
|
|
|
|
# Rename to 'pages' for gitlab pages
|
|
build:
|
|
stage: build
|
|
|
|
before_script:
|
|
- apk update && apk add git
|
|
- npm install --include=optional --force
|
|
|
|
script:
|
|
# Generate site
|
|
- npm run build
|
|
|
|
rules:
|
|
# Only trigger through push & "Run pipeline" events not in "site" branch; Skip in renovate job
|
|
- if: '$RENOVATE != "true" && $CI_COMMIT_REF_NAME != "site" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web")'
|
|
when: always
|
|
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
expire_in: 30 days
|
|
|
|
test:
|
|
stage: test
|
|
|
|
script:
|
|
# /microblog/ should exist and non-empty
|
|
- sh check-homepage.sh
|
|
|
|
rules:
|
|
- if: '$RENOVATE != "true" && $CI_COMMIT_REF_NAME == "microblog" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web")'
|
|
when: always
|
|
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
expire_in: 30 days
|
|
|
|
deploy:
|
|
stage: deploy
|
|
|
|
trigger:
|
|
project: curben/blog
|
|
branch: master
|
|
strategy: depend
|
|
|
|
rules:
|
|
- if: '$RENOVATE != "true" && $CI_COMMIT_REF_NAME == "microblog" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web")'
|
|
when: always
|
|
|
|
include:
|
|
- template: Security/Secret-Detection.gitlab-ci.yml
|