mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-23 13:36:32 +08:00
79ad50d57e
* ci: add Auto Release * docs: add PUBLISH.md * docs: update PUBLISH.md * docs: update PUBLISH.md Co-authored-by: 悠静萝莉 <i@mikuhl.cn> * chore: update docs --------- Co-authored-by: 悠静萝莉 <i@mikuhl.cn> Co-authored-by: wū yāng <uyarnchen@gmail.com>
97 lines
3.3 KiB
YAML
97 lines
3.3 KiB
YAML
name: Auto Release
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [develop]
|
|
types: [opened, synchronize, reopened, closed]
|
|
paths:
|
|
- package.json
|
|
issue_comment:
|
|
types: [edited]
|
|
|
|
jobs:
|
|
generator:
|
|
runs-on: ubuntu-latest
|
|
if: >
|
|
github.event_name == 'pull_request' &&
|
|
github.event.pull_request.merged == false &&
|
|
startsWith(github.head_ref, 'release/')
|
|
steps:
|
|
- run: echo "The head of this PR starts with 'release/'"
|
|
- uses: actions/checkout@v4
|
|
- uses: TDesignOteam/tdesign-tag-action@main
|
|
id: tag-action
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: TDesignOteam/tdesign-changelog-action@main
|
|
id: changelog
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag: ${{ steps.tag-action.outputs.version }}
|
|
- name: Add comment
|
|
uses: peter-evans/create-or-update-comment@v4
|
|
with:
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
body: |
|
|
${{ steps.changelog.outputs.changelog }}
|
|
comment_add_log:
|
|
runs-on: ubuntu-latest
|
|
if: >
|
|
github.event_name == 'issue_comment'
|
|
&& github.event.issue.pull_request
|
|
&& github.event.sender.login == github.event.issue.user.login
|
|
&& startsWith(github.event.comment.body, '## 🌈 ')
|
|
steps:
|
|
- id: comment
|
|
shell: bash
|
|
run: |
|
|
result=$(curl ${{github.event.issue.pull_request.url}} -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}")
|
|
headrefreg='"ref": "(release/[[:digit:]]{1,2}\.[[:digit:]]{1,2}\.[[:digit:]]{1,2})",'
|
|
if [[ $result =~ $headrefreg ]]
|
|
then
|
|
echo "属于 release pr 的 comment ${BASH_REMATCH[1]}"
|
|
else
|
|
echo "不属于 release pr 的 comment" && exit 1
|
|
fi
|
|
echo "::set-output name=branch::${BASH_REMATCH[1]}"
|
|
# zsh $match[1]
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ steps.comment.outputs.branch }}
|
|
- name: Commit and push if needed
|
|
env:
|
|
BODY: ${{ github.event.comment.body }}
|
|
run: |
|
|
txt=$(cat CHANGELOG.md)
|
|
echo "${txt%%##*}$BODY${txt##*---}" > CHANGELOG.md
|
|
git add .
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
git commit -m "chore: changelog's changes"
|
|
git push
|
|
echo "💾 pushed changelog's changes"
|
|
merge_tag:
|
|
runs-on: ubuntu-latest
|
|
if: >
|
|
github.event_name == 'pull_request' &&
|
|
github.event.pull_request.merged == true &&
|
|
startsWith(github.head_ref, 'release/')
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: develop
|
|
token: ${{ secrets.PERSONAL_TOKEN }}
|
|
- uses: TDesignOteam/tdesign-tag-action@main
|
|
id: tag-action
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: tag and push if needed
|
|
run: |
|
|
echo "${{ steps.tag-action.outputs.version }}"
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
git tag ${{ steps.tag-action.outputs.version }}
|
|
git push origin ${{ steps.tag-action.outputs.version }}
|
|
echo "pushed tag ${{ steps.tag-action.outputs.version }}"
|