.gitlab-ci.yml 218 Bytes
Newer Older
Joe T.S.'s avatar
Joe T.S. committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image: alpine:latest

stages:
  - deploy

pages:
  stage: deploy
  script:
    - echo "Deploying to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/"
  artifacts:
    paths:
      - public
  only:
    - master