.gitlab-ci.yml 388 Bytes
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
image: alpine:latest
Volker Coors's avatar
Volker Coors committed
2

Koukofikis's avatar
Koukofikis committed
3
4
5
6
7
8
9
10
11
12
13
14
15
stages:
  - test
  - deploy

test-job:
  stage: test
  script:
    - echo "Testing files exist..."
    - test -f  public/index.html
    - echo "Test finished, all ok"
  only:
    - master

Wolfgang Knopki's avatar
Wolfgang Knopki committed
16
pages:
Volker Coors's avatar
Volker Coors committed
17
18
  stage: deploy
  script:
Koukofikis's avatar
Koukofikis committed
19
    - echo "Deploying to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/"
Wolfgang Knopki's avatar
Wolfgang Knopki committed
20
21
  artifacts:
    paths:
Koukofikis's avatar
Koukofikis committed
22
      - public
Wolfgang Knopki's avatar
Wolfgang Knopki committed
23
  only:
Koukofikis's avatar
Koukofikis committed
24
    - master