Skip to content

Commit 3f7ce0c

Browse files
committed
Redirect to ghostbird/
1 parent 535d30a commit 3f7ce0c

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/workflows/pages.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Deploy pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
build-doc:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: write
12+
pages: write
13+
id-token: write
14+
15+
steps:
16+
- uses: actions/checkout@v5
17+
18+
- name: Configure pages
19+
uses: actions/configure-pages@v4
20+
21+
- name: Upload pages artifact
22+
uses: actions/upload-pages-artifact@v4
23+
24+
- name: Deploy pages
25+
uses: actions/deploy-pages@v4

_site/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>exteditor.github.io</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
7+
<meta http-equiv="refresh" content="0;url=/ghostbird/">
8+
<link rel="icon" href="/ghostbird/ext/blue.svg">
9+
</head>
10+
<body>
11+
<ul><li><a href="/ghostbird/">Ghostbird</a></li></ul>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)