mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
3020d60805
* Update release-helper.yml * Update release-helper.yml
27 lines
844 B
YAML
27 lines
844 B
YAML
# Current release process:
|
|
# 1. `npm run pub` will call antd-tools `run pub`
|
|
# 2. antd-tools `run pub` will generate a new tag
|
|
# 3. antd-tools `run pub` will trigger `npm publish` at the same time
|
|
# 4. Then the new tag will trigger this current action
|
|
# 5. The action will generate a new release, and publish DingDing notification at the same time
|
|
|
|
name: Release Helper
|
|
|
|
on:
|
|
create
|
|
|
|
jobs:
|
|
release-helper:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: make release
|
|
if: github.event.ref_type == 'tag'
|
|
uses: actions-cool/release-helper@v1.4.0
|
|
with:
|
|
triger: 'tag'
|
|
changelogs: 'CHANGELOG.en-US.md, CHANGELOG.zh-CN.md'
|
|
branch: 'master'
|
|
dingding-token: ${{ secrets.DINGDING_BOT_TOKEN }}
|
|
dingding-msg: 'CHANGELOG.zh-CN.md'
|
|
prerelease-filter: '-, a, b, A, B'
|