.gitlab-ci.yml 307 Bytes
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
image: alpine:latest
Rushikesh Padsala's avatar
Rushikesh Padsala committed
2

Wolfgang Knopki's avatar
Wolfgang Knopki committed
3
pages:
Rushikesh Padsala's avatar
Rushikesh Padsala committed
4
5
  stage: deploy
  script:
6
  - find . -type f -name 'index.htm' -exec sh -c 'x="{}"; y=$(echo "$x" | sed -e 's/.htm/.html/g') ; cp $x $y' \;
Wolfgang Knopki's avatar
Wolfgang Knopki committed
7
8
9
10
11
12
  - echo "Deploying to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/"
  artifacts:
    paths:
    - public
  only:
  - master