Skip to content

Commit ad9f66c

Browse files
action
Add an index file to access the zip files
1 parent 066d985 commit ad9f66c

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/build-ui.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
uses: actions/upload-artifact@v4
3636
with:
3737
name: github-pages
38-
path: "??/build/*.zip"
38+
path: |
39+
??/build/*.zip
40+
index.html
3941
- name: Deploy to GitHub Pages
4042
id: deployment
4143
uses: actions/deploy-pages@v4

index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>UI bundles for the CTI website</title>
7+
</head>
8+
<body>
9+
<h1>Note</h1>
10+
<p>This site is providing resources for the automated process. It is not dedicated for human visitors</p>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)