diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..951a6041585b872d719bc0b648300f1a769314a9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +image: alpine:latest + +stages: + - deploy + +pages: + stage: deploy + script: + - mkdir -p public + - echo "deploy to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/" > public/index.html + artifacts: + paths: + - public + only: + - master \ No newline at end of file