Compare commits

...

3 Commits

Author SHA1 Message Date
Kevin Tumma
457cd731e4 Update .gitlab-ci.yml file 2024-03-04 14:36:47 +01:00
Andrei Isvoran
e01931c1e9 test publish stuff 2024-03-01 15:33:43 +02:00
Andrei Isvoran
67a10bb7c2 test publish stuff 2024-03-01 15:32:14 +02:00
2 changed files with 31 additions and 0 deletions

View File

@ -21,3 +21,12 @@ deploy:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- if: $CI_COMMIT_BRANCH =~ /^release/
- if: $CI_COMMIT_TAG
pages:
stage: build
script:
- mkdir public
- mv redaction-service-v1/index.html public/
artifacts:
paths:
- public

View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dummy Page</title>
</head>
<body>
<header>
<h1>Welcome to the Dummy Page</h1>
</header>
<main>
<section>
<p>This is a simple HTML page created as a placeholder or for testing purposes. You can add more content and styles to expand it.</p>
<a href="https://example.com">Visit Example</a>
</section>
</main>
<footer>
<p>&copy; 2024 Dummy Page. All rights reserved.</p>
</footer>
</body>
</html>