Skip to content

Commit cc5f876

Browse files
committed
refactor: move GitHub.io page to web/ folder with Actions deploy
1 parent 43f5dc7 commit cc5f876

3 files changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/deploy-pages.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Deploy GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
paths:
7+
- 'web/**'
8+
workflow_dispatch:
9+
10+
permissions:
11+
contents: read
12+
pages: write
13+
id-token: write
14+
15+
concurrency:
16+
group: pages
17+
cancel-in-progress: true
18+
19+
jobs:
20+
deploy:
21+
runs-on: ubuntu-latest
22+
environment:
23+
name: github-pages
24+
url: ${{ steps.deployment.outputs.page_url }}
25+
steps:
26+
- uses: actions/checkout@v4
27+
- uses: actions/configure-pages@v4
28+
- uses: actions/upload-pages-artifact@v3
29+
with:
30+
path: web
31+
- id: deployment
32+
uses: actions/deploy-pages@v4

docs/.nojekyll

Whitespace-only changes.
File renamed without changes.

0 commit comments

Comments
 (0)