Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

.gitlab-ci.yml

Blame
  • TheJoeCoder's avatar
    5095a2b8
    History
    This GitLab CI configuration is valid. Learn more
    .gitlab-ci.yml 227 B
    image: "python:3"
    
    pages:
      stage: deploy
      script:
        - python3 -m pip install -r requirements.txt
        - python3 build_site.py
      artifacts:
        paths:
          - public
      rules:
        - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH