Files
blog/.gitlab-ci.yml
2023-08-31 03:41:02 +03:00

29 lines
365 B
YAML

image: jekyll/jekyll
cache:
paths:
- _bundle/
build:
stage: build
script:
- bundle install
- bundle exec jekyll build
- mv _site public
artifacts:
paths:
- public
except:
- main
pages:
stage: deploy
script:
- bundle exec jekyll build
- mv _site public
artifacts:
paths:
- public
only:
- main