From 162ccf13227fb40879310f7c6f0a4049d7d45a7a Mon Sep 17 00:00:00 2001 From: Kandia <32kake1mpg@hft-stuttgart.de> Date: Mon, 27 May 2024 21:00:54 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..951a604 --- /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 -- GitLab