webbed-site/.gitlab-ci.yml

12 lines
230 B
YAML
Raw Normal View History

2024-12-15 21:53:52 -06:00
default:
image: ruby:3.2
2024-09-26 12:58:16 -05:00
2024-12-15 21:53:52 -06:00
deploy-pages:
2024-09-26 12:58:16 -05:00
script:
2024-12-15 21:53:52 -06:00
- gem install bundler
- bundle install
- bundle exec jekyll build -d public
pages: true # specifies that this is a Pages job
2024-09-26 12:58:16 -05:00
artifacts:
paths:
2024-12-15 21:53:52 -06:00
- public