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
22on :
33 push :
44 branches :
77 build :
88 runs-on : ubuntu-18.04
99 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
1412 with :
15- node-version : ' 12.x '
13+ node-version : 14
1614
1715 - run : npm install
1816 - 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/changelog-generator@v1.5.0
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