aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a02dc1cdd187106679357baa3bc01b895929212a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
image: alpine

stages:
  - deploy

pages:
  stage: deploy
  script:
    - mkdir public
    - cp index.html public
  artifacts:
    paths:
      - public
  only:
    - master