test publish stuff

This commit is contained in:
Andrei Isvoran 2024-03-01 15:32:14 +02:00
parent 313df1e118
commit 67a10bb7c2
2 changed files with 33 additions and 0 deletions

View File

@ -21,3 +21,14 @@ deploy:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
- if: $CI_COMMIT_BRANCH =~ /^release/
- if: $CI_COMMIT_TAG
pages:
stage: build
tags:
- dind
script:
- mkdir public
- mv redaction-service-v1/index 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>