butter-kanglam-ui/.gitlab-ci.yml
2024-05-01 18:14:42 +00:00

39 lines
No EOL
570 B
YAML

image: ruby:3.1
variables:
JEKYLL_ENV: production
LC_ALL: C.UTF-8
before_script:
- bundle install
test:
stage: test
script:
- bundle exec jekyll build -d test
artifacts:
paths:
- test
except:
- master
build:
stage: build
script:
- apt-get update
- apt-get install -y zip
- bundle exec jekyll build -d butter-site
- zip -r content.zip butter-site
artifacts:
paths:
- content.zip
pages:
stage: deploy
script:
- bundle exec jekyll build -d public
artifacts:
paths:
- public
only:
- master