summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e05f559ca55eb47ad579a35644a214b5386272dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
deploy_staging:
  stage: deploy
  script:
  - mkdir .public
  - cp -r * .public
  - mv .public public
  artifacts:
    paths:
    - public
  only:
  - master