blog/.gitlab-ci.yml

42 lines
679 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:
expire_in: 10 mins
paths:
- "public"
2021-12-31 05:02:17 +00:00
#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
2021-02-09 03:22:48 +00:00