File tree 1 file changed +43
-0
lines changed
1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy to GitHub Pages
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ # Review gh actions docs if you want to further define triggers, paths, etc
8
+ # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
9
+
10
+ permissions :
11
+ contents : write
12
+
13
+ jobs :
14
+ deploy :
15
+ name : Deploy to GitHub Pages
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - uses : actions/checkout@v3
19
+ - uses : actions/setup-node@v3
20
+ with :
21
+ node-version : 18
22
+ cache : yarn
23
+
24
+ - name : Install dependencies
25
+ run : yarn install --frozen-lockfile
26
+ - name : Build website
27
+ run : yarn build
28
+
29
+ # Popular action to deploy to GitHub Pages:
30
+ # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
31
+ - name : Deploy to GitHub Pages
32
+ uses : peaceiris/actions-gh-pages@v3
33
+ with :
34
+ github_token : ${{ secrets.GITHUB_TOKEN }}
35
+ # Build output to publish to the `gh-pages` branch:
36
+ publish_dir : ./build
37
+ # The following lines assign commit authorship to the official
38
+ # GH-Actions bot for deploys to `gh-pages` branch:
39
+ # https://github.com/actions/checkout/issues/13#issuecomment-724415212
40
+ # The GH actions bot is used by default if you didn't specify the two fields.
41
+ # You can swap them out with your own user credentials.
42
+ user_name : github-actions[bot]
43
+ user_email : 41898282+github-actions[bot]@users.noreply.github.com
You can’t perform that action at this time.
0 commit comments