Hello World

master
Hume2 2020-01-28 11:56:07 +01:00
commit 26ebf26042
2 changed files with 20 additions and 0 deletions

12
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,12 @@
pages:
stage: deploy
script:
- mkdir .public
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master

8
index.html Normal file
View File

@ -0,0 +1,8 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body> Hello world! </body>
</html>