We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ced1732 + f89a189 commit 8468a7dCopy full SHA for 8468a7d
.github/workflows/mdbook.yml
@@ -43,6 +43,11 @@ jobs:
43
- name: Build Compiler User Guide with mdBook
44
run: mdbook build
45
working-directory: ./compiler-user-guide
46
+
47
+ - name: Add Index Page
48
+ run: |
49
+ mkdir public
50
+ cp index.html ./public/index.html
51
- name: Upload artifact
52
uses: actions/upload-pages-artifact@v3
53
with:
index.html
@@ -0,0 +1,12 @@
1
+<!DOCTYPE html>
2
+<html>
3
4
+<head>
5
+ <meta http-equiv="refresh" content="1; url='https://docs.clash-lang.org/compiler-user-guide/'" />
6
+</head>
7
8
+<body>
9
+ <p>You will be redirected to the Clash Compiler User Guide soon!</p>
10
+</body>
11
12
+</html>
0 commit comments