Skip to content
This repository was archived by the owner on Jan 8, 2025. It is now read-only.

Commit b55733f

Browse files
committed
chore: added release-tag script
1 parent 109fd5b commit b55733f

File tree

6 files changed

+35
-12
lines changed

6 files changed

+35
-12
lines changed

.github/workflows/release-tag.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Create Release Tag
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release-tag:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@master
14+
15+
- name: Create Release Tag
16+
id: release_tag
17+
uses: yyx990803/release-tag@master
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
with:
21+
tag_name: ${{ github.ref }}
22+
body: |
23+
更新内容请查看[CHANGELOG](https://github.com/varletjs/varlet-vue2/blob/dev/CHANGELOG.md)。
24+
Please refer to [CHANGELOG](https://github.com/varletjs/varlet-vue2/blob/dev/CHANGELOG.md) for details.

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,8 @@
3737
- 💪 确保90%以上单元测试覆盖率,提供稳定性保证
3838
- 🛠️ 支持暗黑模式
3939

40-
41-
### 项目状态
42-
`Varlet-vue2` 组件功能已全部完成,正在进行单元测试完善工作,推荐内部测试使用。
43-
4440
### 安装
41+
4542
### CDN
4643
`varlet.js` 包含组件库的所有样式和逻辑,引入即可。
4744

packages/varlet-vue2-ui/docs/ide.en-US.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ Open the library properties documentation by setting 'editor-> general-> Code Co
1515

1616
### VSCode
1717

18-
Install the `Volar` plugin and configure `ts.config.json` as follows to get type hints in the template.
18+
#### Volar
19+
20+
Install the `Volar` plugin and configure `tsconfig.json` as follows to get type hints in the template.
1921

2022
```json
2123
{
@@ -26,11 +28,10 @@ Install the `Volar` plugin and configure `ts.config.json` as follows to get type
2628
```
2729

2830
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="https://varlet.gitee.io/varlet-ui-vue2/hl_vsc_setting.png" alt="vscode setting" />
29-
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="https://varlet.gitee.io/varlet-ui-vue2/hl_vsc.png" alt="vscode highlight" />
3031

31-
### Varlet VSCode Extension
32+
#### Varlet VSCode Extension
3233

3334
Search the `varlet-vscode-extension` installation in the `vscode` plugin market. When you hover over the component name, you can go directly to the component's document address via a link, and provides autocompletion for all components
3435

3536
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="https://varlet.gitee.io/varlet-ui-vue2/ext_vsc.png" alt="vscode ext" />
36-
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="../public/vscode-plugin.gif" alt="vscode ext link" />
37+
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="../public/varlet-vscode-extension.gif" alt="vscode ext link" />

packages/varlet-vue2-ui/docs/ide.zh-CN.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414

1515
### VSCode
1616

17-
安装 `Volar` 插件, 并按照下面的方式配置 `ts.config.json`,可以在模板中得到类型提示。
17+
#### Volar
18+
19+
安装 `Volar` 插件, 并按照下面的方式配置 `tsconfig.json`,可以在模板中得到类型提示。
1820

1921
```json
2022
{
@@ -25,12 +27,11 @@
2527
```
2628

2729
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="https://varlet.gitee.io/varlet-ui-vue2/hl_vsc_setting.png" alt="vscode setting" />
28-
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="https://varlet.gitee.io/varlet-ui-vue2/hl_vsc.png" alt="vscode highlight" />
2930

30-
### Varlet VSCode Extension
31+
#### Varlet VSCode Extension
3132

3233
`vscode` 插件市场搜索 `varlet-vscode-extension` 安装即可, 在鼠标悬停在组件名上时, 可以通过链接直接前往该组件的文档地址,并且提供了所有组件的自动补全。
3334

3435
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="https://varlet.gitee.io/varlet-ui-vue2/ext_vsc.png" alt="vscode ext" />
35-
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="../public/vscode-plugin.gif" alt="vscode ext link" />
36+
<img style="width: 100%; margin-top: 10px; border-radius: 5px" src="../public/varlet-vscode-extension.gif" alt="vscode ext link" />
3637

2.26 MB
Loading
-1.6 MB
Binary file not shown.

0 commit comments

Comments
 (0)