Add a simple index page

This commit is contained in:
Jack Grigg 2021-05-07 13:12:18 +12:00
parent 09ef88a54d
commit ad90a4d99b
2 changed files with 14 additions and 0 deletions

View File

@ -60,6 +60,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ZENHUB_TOKEN: ${{ secrets.ZENHUB_TOKEN }}
- name: Copy the index page
run: cp ./index.html ./public
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:

11
index.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>Zcash Developers Hub</title>
</head>
<body>
<h1>Zcash Developers Hub</h1>
<p>Currently this is just for hosting the ECC core team's DAG showing dependencies between issues and PRs.</p>
<p><a href="zcash-core-dag.svg">Zcash core DAG</a></p>
</body>
</html>