Skip to content

ci(workflow): updated the release workflow to allow for no component name input and added a step to build all components #3261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 7, 2025
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