Skip to content

Commit b1a5f9e

Browse files
committed
ci: add deployment workflow
1 parent 21d3918 commit b1a5f9e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Deploy to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
deploy-pages:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
pages: write
13+
id-token: write
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Upload pages artifact
18+
uses: actions/upload-pages-artifact@v3
19+
with:
20+
path: .
21+
- name: Deploy pages
22+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)