Skip to content

Commit 4d332e7

Browse files
committed
Upload assets
1 parent 9e3021d commit 4d332e7

File tree

118 files changed

+130166
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+130166
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# .github/workflows/deploy.yml
2+
name: Deploy to GitHub Pages
3+
4+
on:
5+
push:
6+
branches: [main]
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
deploy:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout repository
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Pages
25+
uses: actions/configure-pages@v5
26+
27+
- name: Upload to GitHub Pages
28+
uses: actions/upload-pages-artifact@v3
29+
with:
30+
path: '.'
31+
32+
- name: Deploy to GitHub Pages
33+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)