We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0710a29 commit 8ef4142Copy full SHA for 8ef4142
.github/workflows/build.yml
@@ -3,6 +3,11 @@ name: Build static site
3
on:
4
push:
5
branches: [main]
6
+ workflow_dispatch:
7
+
8
+concurrency:
9
+ group: pages
10
+ cancel-in-progress: false
11
12
jobs:
13
build:
@@ -26,7 +31,21 @@ jobs:
26
31
SKIP_DOCS: true # TODO: setup docs generation
27
32
28
33
- name: Upload artifact
29
- uses: actions/upload-artifact@v4
34
+ uses: actions/upload-pages-artifact@v3
30
35
with:
- name: site-build
36
path: __public__
37
38
+ deploy:
39
+ runs-on: ubuntu-24.04
40
+ needs: build
41
+ permissions:
42
+ pages: write
43
+ id-token: write
44
+ environment:
45
+ name: github-pages
46
+ url: ${{ steps.deployment.outputs.page_url }}
47
48
+ steps:
49
+ - name: Deploy to GitHub Pages
50
+ id: deployment
51
+ uses: actions/deploy-pages@v4
0 commit comments