Skip to content

Commit 638d1d8

Browse files
author
wangshan
committed
chore: 构建过程或辅助工具的变动 包括但不限于文档、代码生成等)
1 parent 64d688f commit 638d1d8

File tree

3 files changed

+70
-0
lines changed

3 files changed

+70
-0
lines changed

.github/workflows/release.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
release:
8+
name: Release
9+
runs-on: ubuntu-18.04
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v2
13+
- name: Setup Node.js
14+
uses: actions/setup-node@v2
15+
with:
16+
node-version: 12
17+
- name: SetUp Depbot
18+
uses: bahmutov/npm-install@v1 # 使用
19+
- name: Install dependencies
20+
run: npm ci
21+
- name: Release
22+
run: npx semantic-release
23+
run: npm run version
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
26+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
## [0.0.1](https://github.com/front-end-open/wt_run/compare/v1.7.0...v0.0.1) (2021-10-23)
2+
3+
### Features
4+
5+
- 声明文件模板(全局) ([9692f26](https://github.com/front-end-open/wt_run/commit/9692f26a361a874673c79b7ce4cf95408e336e72))
6+
- 循环链表 ([15cb268](https://github.com/front-end-open/wt_run/commit/15cb2689016dd361bff00138365fe6432f73af7f))
7+
- 新功能 ([6a38243](https://github.com/front-end-open/wt_run/commit/6a3824371e017c0b579669b300a3d5d22c9da28e))
8+
- 链表初始化 ([1952b2b](https://github.com/front-end-open/wt_run/commit/1952b2bfead25c33e2a550f8836f439147a36ea2))
9+
- 链表抽象数据结构 ([3a1dd12](https://github.com/front-end-open/wt_run/commit/3a1dd12754c597953869b757f26bceaf47b77270))
10+
- 链表操作 ([995b862](https://github.com/front-end-open/wt_run/commit/995b862d40dbf4e76baa7ca537c51a8db1bcd4f7))
11+
- 顺序搜索 ([2ce693f](https://github.com/front-end-open/wt_run/commit/2ce693f21381fa60f89b7aeeb9ad3a998daafd21))
12+
13+
# [1.6.0](https://github.com/front-end-open/wt_run/compare/v1.5.0...v1.6.0) (2021-07-15)
14+
15+
### Features
16+
17+
- 新功能 ([0225d05](https://github.com/front-end-open/wt_run/commit/0225d057b36f1c01ba449f5fdec3617ecf829ab4))
18+
- 桶排序 ([51dd151](https://github.com/front-end-open/wt_run/commit/51dd151f33a5c5db9a5230b70686bab5c3d337ad))
19+
- 顺序搜索 ([1a9e85e](https://github.com/front-end-open/wt_run/commit/1a9e85e334d7ef24e5ba0cf25f70ae6c9ef0e340))
20+
21+
# [1.4.0](https://github.com/front-end-open/wt_run/compare/v1.3.0...v1.4.0) (2021-07-11)
22+
23+
### Features
24+
25+
- 分布式排序-计数排序 ([f5c6aad](https://github.com/front-end-open/wt_run/commit/f5c6aad50f9b9f00c9286033fe324f6514c9ccd5))
26+
- 快速排序算法 ([570eede](https://github.com/front-end-open/wt_run/commit/570eeded2066f8d3ce9563252d1d8e0886337617))
27+
- 桶排序 ([a5637ec](https://github.com/front-end-open/wt_run/commit/a5637ec9a04f7f1b0241df20fc273d8738840acb))
28+
- 桶排序 ([6944413](https://github.com/front-end-open/wt_run/commit/6944413c7fb0012ea4b43d0618c21dee29bc8e05))
29+
30+
# [1.1.0](https://github.com/front-end-open/wt_run/compare/v1.0.0...v1.1.0) (2021-07-07)
31+
32+
### Features
33+
34+
- 新功能(feature) ([d22509e](https://github.com/front-end-open/wt_run/commit/d22509e2e92dee0d219e6ca955315619b52cea32))
35+
36+
# [1.0.0](https://github.com/front-end-open/wt_run/compare/2a2f8b9c3b658a282a0a991d54bda50b7c0892b6...v1.0.0) (2021-07-07)
37+
38+
### Features
39+
40+
- 新功能 ([2a2f8b9](https://github.com/front-end-open/wt_run/commit/2a2f8b9c3b658a282a0a991d54bda50b7c0892b6))
41+
- 新功能(feature) ([87b9a44](https://github.com/front-end-open/wt_run/commit/87b9a44f2fed1b26cbb9966499b26fa61f3ece29))
42+
- 新功能(feature) ([f631290](https://github.com/front-end-open/wt_run/commit/f63129060d55204ac4ba24d3e5f753d2bcfbea97))
43+
- 新功能(feature) ([f367890](https://github.com/front-end-open/wt_run/commit/f3678902d6db5849190dab65a53f7f1717c14daa))

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"dev": "./node_modules/.bin/webpack server --config config/webpack.dev.js --open --progress",
8+
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
89
"build": "./node_modules/.bin/webpack --config config/webpack.prod.js --progress",
910
"analyz": "NODE_ENV=production npm_config_report=true npm run build",
1011
"test": "jest"

0 commit comments

Comments
 (0)