garden-tools 2.6.0

Garden grows and cultivates collections of Git trees Garden lets you define and run commands over collections of configuration-defined multi-worktree Git environments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This is the Gitlab CI pipeline for the pre-generated garden-rs.gitlab.io repository
# and is installed to doc/book/.gitlab-ci.yml
pages:
  image: alpine
  script:
    - apk add --update rsync
    - rsync -ar --exclude=public ./ ./public/
    - echo "Read the pre-generated documentation at $CI_PAGES_URL"
  artifacts:
    paths:
      - public
  publish: public
  only:
    - pages