Skip to content

Commit 85eeb64

Browse files
committed
Configure GitHub Pages
1 parent 10fb1b2 commit 85eeb64

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/publish.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Publish GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- pages
7+
8+
jobs:
9+
deploy:
10+
environment:
11+
name: github-pages
12+
url: ${{steps.deployment.outputs.page_url}}
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Setup Pages
18+
uses: actions/configure-pages@v5
19+
- name: Upload Artifact
20+
uses: actions/upload-pages-artifact@v3
21+
with:
22+
# upload entire directory
23+
path: '.'
24+
- name: Deploy to GitHub Pages
25+
id: deployment
26+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)