From 0cdf5726822f859c7dc415762defbabbbb6ff90c Mon Sep 17 00:00:00 2001 From: benjamin <mlsuyt@protonmail.com> Date: Sat, 11 May 2019 12:33:02 -0400 Subject: [PATCH] static web site --- .gitlab-ci.yml | 12 ++++++++++++ index.html | 8 ++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitlab-ci.yml create mode 100644 index.html diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..31e90a9 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +pages: + stage: deploy + script: + - mkdir .public + - cp -r * .public + - mv .public public + artifacts: + paths: + - public + only: + - master + diff --git a/index.html b/index.html new file mode 100644 index 0000000..15c39df --- /dev/null +++ b/index.html @@ -0,0 +1,8 @@ +<html> +<head> +<title>test</title> +</head> +<body> +test +</body> +</html> -- GitLab