41 lines
542 B
YAML
41 lines
542 B
YAML
image: shockrah/website:latest
|
|
|
|
stages:
|
|
- build
|
|
- deploy
|
|
|
|
|
|
build-site:
|
|
only:
|
|
refs:
|
|
- master
|
|
|
|
stage: build
|
|
|
|
script:
|
|
- hugo version
|
|
- hugo
|
|
|
|
artifacts:
|
|
paths:
|
|
- public/
|
|
|
|
|
|
#deploy-neocities:
|
|
# # This might get really ugly with neocities so hang on a while before we bother
|
|
# # trying to figure how tf we deploy this thing
|
|
# only:
|
|
# refs:
|
|
# - neocities
|
|
#
|
|
# stage: deploy
|
|
#
|
|
# script:
|
|
# # First the html
|
|
# - bash upload.sh -h
|
|
# # then we do the media files
|
|
# - bash upload.sh -M
|
|
|
|
|
|
|