Skip to content

Commit 34fb3fa

Browse files
committed
add GitHub Pages site and repository links
1 parent de63d8d commit 34fb3fa

3 files changed

Lines changed: 44 additions & 2 deletions

File tree

.github/workflows/pages.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Deploy Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
23+
- uses: actions/configure-pages@v5
24+
with:
25+
enablement: true
26+
27+
- name: Validate site
28+
run: test -f docs/index.html
29+
30+
- uses: actions/upload-pages-artifact@v4
31+
with:
32+
path: docs
33+
34+
deploy:
35+
needs: build
36+
runs-on: ubuntu-latest
37+
environment:
38+
name: github-pages
39+
url: ${{ steps.deployment.outputs.page_url }}
40+
steps:
41+
- uses: actions/deploy-pages@v4
42+
id: deployment

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<p align="center">
2222
<a href="README.ru.md">🇷🇺 Русская документация</a>
2323
·
24-
<a href="docs/index.html">Mini landing</a>
24+
<a href="https://flokestudio.github.io/glyph-miO/">Site</a>
2525
·
2626
<a href="https://github.com/FlokeStudio/glyph-sO">glyph-sO</a> (vault search)
2727
·

REPO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
`glyph-miO` is the Obsidian metadata intelligence plugin in the Glyph 2.3 family.
44

55
- Main docs: `README.md`
6-
- Mini landing: `docs/index.html`
6+
- Site: https://flokestudio.github.io/glyph-miO/
77
- Shared search engine: [`glyph-s`](https://github.com/FlokeStudio/glyph-s)
88
- Companion plugin: [`glyph-sO`](https://github.com/FlokeStudio/glyph-sO)

0 commit comments

Comments
 (0)