devroom.io/.gitlab-ci.yml

24 lines
473 B
YAML
Raw Normal View History

2021-07-14 07:42:31 +00:00
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
2021-07-09 09:13:46 +00:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2021-07-09 09:13:46 +00:00
pages:
2022-08-20 13:10:16 +00:00
before_script:
- apk add --no-cache imagemagick
2021-07-09 09:13:46 +00:00
script:
- hugo
2022-08-20 13:23:15 +00:00
- ls -lah
- find ./public -name '*.jpg' -exec mogrify -monitor -sampling-factor 4:2:0 -strip -interlace JPEG -colorspace sRGB -resize 2048 -compress JPEG -quality 80 {} \;
2021-07-09 09:13:46 +00:00
artifacts:
paths:
- public
only:
- master
test:
script:
- hugo
except:
- master