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 7fa2520 commit 0f3732cCopy full SHA for 0f3732c
1 file changed
.github/workflows/build.yml
@@ -3,6 +3,11 @@
3
name: CI
4
on: push
5
6
+permissions:
7
+ contents: read
8
+ pages: write
9
+ id-token: write
10
+
11
jobs:
12
build:
13
runs-on: ubuntu-latest
@@ -40,3 +45,13 @@ jobs:
40
45
name: workspace-${{github.job}}
41
46
path: '*'
42
47
retention-days: 3
48
49
+ - name: Upload GitHub Pages artifact
50
+ uses: actions/upload-pages-artifact@v3
51
+ with:
52
+ path: docs/
53
54
+ - name: Deploy to GitHub Pages
55
+ uses: actions/deploy-pages@v4
56
57
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments