Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/dispatch-ui-publish-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
description: |
输入需要打包的组件名称,多个以空格分隔,
例如: `input alert`.
required: true
required: false
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.sha }}
Expand Down Expand Up @@ -49,8 +49,13 @@ jobs:
run: pnpm i --no-frozen-lockfile

- name: Run Build Components
if: inputs.components != ''
run: pnpm build:ui ${{ inputs.components }}

- name: Run Build All Components
if: inputs.components == ''
run: pnpm build:ui

- name: Run Release alpha
run: pnpm release:alpha -u

Expand Down
1 change: 0 additions & 1 deletion packages/vue/src/year-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"//postversion": "pnpm build"
},
"dependencies": {
"@opentiny/utils": "workspace:~",
"@opentiny/vue-common": "workspace:~",
"@opentiny/vue-renderless": "workspace:~",
"@opentiny/vue-theme": "workspace:~"
Expand Down
Loading