We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
build-website
1 parent 62279c7 commit 406d0e8Copy full SHA for 406d0e8
1 file changed
.github/workflows/build-website.yml
@@ -0,0 +1,21 @@
1
+name: Build website
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+# To force read only on all permissions at workflow level.
9
+permissions: read-all
10
11
+jobs:
12
+ build-website:
13
+ uses: seedcase-project/.github/.github/workflows/reusable-build-docs.yml@main
14
+ # Only need these for this job.
15
+ permissions:
16
+ contents: write
17
+ pages: write
18
+ with:
19
+ hosting-provider: gh-pages
20
+ secrets:
21
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments