aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: e0aac030a6ded70a5dd375d7544419711ef18a49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
stages:
  - deploy

pages:
  stage: deploy
  script:
    - apk add --update py-pip
    - pip install -r requirements.txt
    - mkdir public
    - ./pet_names 100 3 > public/index.txt
    - echo '<html><head></head><body><table>' > public/index.html
    - cat public/index.txt | sed -e 's/^/<tr><td>/' | sed -e 's#$#</td></tr>#' >> public/index.html
    - echo '</table></body></html>' >> public/index.html
  artifacts:
    paths:
      - public