Skip to content

Commit

Permalink
ci: 更新工作流 优化组件细节
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyh2001 committed Oct 8, 2023
1 parent e33819c commit 4227c05
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 24 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/release-tag.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: Create Release Tag
# name: Create Release Tag

on:
push:
branches:
- master
paths:
- 'packages/fighting-design/package.json'
# on:
# push:
# branches:
# - master
# paths:
# - 'packages/fighting-design/package.json'

jobs:
release-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
# jobs:
# release-tag:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@master

- name: Create Release Tag
id: release_tag
uses: yyx990803/release-tag@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
body: |
详细更新日志请参考 [CHANGELOG.md](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)。
# - name: Create Release Tag
# id: release_tag
# uses: yyx990803/release-tag@master
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# body: |
# 详细更新日志请参考 [CHANGELOG.md](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.md)。

Please refer to [CHANGELOG.en-US.md](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.en-US.md) for details.
# Please refer to [CHANGELOG.en-US.md](https://github.com/FightingDesign/fighting-design/blob/master/CHANGELOG.en-US.md) for details.
1 change: 1 addition & 0 deletions packages/fighting-design/avatar-group/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { install } from '../_utils'

export const FAvatarGroup = install(AvatarGroup)

/** avatar-group 组件实例类型 */
export type AvatarGroupInstance = InstanceType<typeof AvatarGroup>

export * from './src/interface'
Expand Down
1 change: 1 addition & 0 deletions packages/fighting-design/tabs-item/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { install } from '../_utils'

export const FTabsItem = install(TabsItem)

/** tabs-item 组件实例类型 */
export type TabsItemInstance = InstanceType<typeof TabsItem>

export * from './src/interface'
Expand Down
2 changes: 1 addition & 1 deletion packages/fighting-design/watermark/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ export const FWatermark = install(Watermark)
/** watermark 组件实例类型 */
export type WatermarkInstance = InstanceType<typeof Watermark>

export * from './src/interface.d'
export * from './src/interface'

export default FWatermark

0 comments on commit 4227c05

Please sign in to comment.