Skip to content

Commit e60fd49

Browse files
committed
2 parents 9f76336 + 0e653e2 commit e60fd49

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/deploy-website

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# .github/workflows/deploy-website.yml
2+
name: Deploy Website
3+
on:
4+
push:
5+
branches: [main]
6+
paths: [website/**]
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
jobs:
14+
deploy:
15+
runs-on: ubuntu-latest
16+
environment:
17+
name: github-pages
18+
url: ${{ steps.deployment.outputs.page_url }}
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: actions/configure-pages@v4
22+
- uses: actions/upload-pages-artifact@v3
23+
with:
24+
path: website
25+
- id: deployment
26+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)