File tree Expand file tree Collapse file tree 1 file changed +22
-6
lines changed Expand file tree Collapse file tree 1 file changed +22
-6
lines changed Original file line number Diff line number Diff line change 1
- name : GitHub Actions Build KKT
1
+ name : CI
2
2
on :
3
3
push :
4
4
branches :
7
7
build :
8
8
runs-on : ubuntu-18.04
9
9
steps :
10
- - uses : actions/checkout@master
11
-
12
- - name : Setup Node
13
- uses : actions/setup-node@v1
10
+ - uses : actions/checkout@v2
11
+ - uses : actions/setup-node@v2
14
12
with :
15
- node-version : ' 12.x '
13
+ node-version : 14
16
14
17
15
- run : npm install
18
16
- run : npm run build
17
+
18
+ - name : Generate Contributors Images
19
+ uses : jaywcjlove/github-action-contributors@main
20
+ with :
21
+ filter-author : (renovate\[bot\]|renovate-bot|dependabot\[bot\])
22
+ output : build/CONTRIBUTORS.svg
23
+ avatarSize : 42
24
+
25
+ - name : get tag version
26
+ id : tag_version
27
+ uses :
jaywcjlove/[email protected]
28
+
29
+ - name : Deploy
30
+ uses : peaceiris/actions-gh-pages@v3
31
+ with :
32
+ commit_message : ${{steps.tag_version.outputs.tag}} ${{ github.event.head_commit.message }}
33
+ github_token : ${{ secrets.GITHUB_TOKEN }}
34
+ publish_dir : ./build
You can’t perform that action at this time.
0 commit comments