Skip to content
Snippets Groups Projects
Select Git revision
  • 24c4ddecfe2a159e6865c0e116dfb1329c2e9543
  • master default protected
2 results

.gitignore

Blame
  • .gitlab-ci.yml NaN GiB
    # This file is a template, and might need editing before it works on your project.
    # Full project: https://gitlab.com/pages/plain-html
    # pages:
    #   stage: deploy
    #   script:
    #   - mkdir .public
    #   - cp -r _book/* .public
    #   - mv .public public
    #   artifacts:
    #     paths:
    #     - public
    #   only:
    #   - master
    
    # the 'pages' job will deploy and build your site to the 'public' path
    pages:
      stage: deploy
      script:
        - gitbook build . public # build to public path
      artifacts:
        paths:
          - public
      only:
        - master # this job will affect only the 'master' branch