mirror of
https://git.anonymousland.org/anonymousland/anonymousland.git
synced 2024-10-01 11:49:49 -04:00
12 lines
189 B
YAML
12 lines
189 B
YAML
kind: pipeline
|
|
name: Jekyll build
|
|
type: docker
|
|
|
|
steps:
|
|
- name: build
|
|
image: ruby:3.1.3
|
|
commands:
|
|
- gem update
|
|
- gem install bundler
|
|
- bundle install
|
|
- bundle exec jekyll build |