blog/.gitlab-ci.yml

53 lines
657 B
YAML
Raw Normal View History

image: shockrah/website:latest
2021-02-09 03:22:48 +00:00
stages:
- build
- deploy
2021-02-09 03:22:48 +00:00
build-site:
only:
refs:
- master
stage: build
script:
- hugo version
- hugo
2021-02-09 03:22:48 +00:00
artifacts:
paths:
2022-01-19 23:37:18 +00:00
- public/
2022-03-20 21:20:28 +00:00
pages:
stage: deploy
needs:
- build-site
dependencies:
- build-site
# Dummy script to keep the job valid
script:
- >
if [ -d public/ ]; then
echo 'Public directory found'
else
echo 'Nothing found'
fi
artifacts:
paths:
- public/
2021-02-09 03:22:48 +00:00
2022-03-20 21:20:28 +00:00
neocities:
stage: deploy
needs:
- build-site
when: manual
dependencies:
- build-site
script:
- bash scripts/neocities.sh