mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
ci: 修复 release 生成
This commit is contained in:
parent
c648a00e08
commit
1c2900fff6
23
.github/workflows/release-notes.mjs
vendored
Executable file
23
.github/workflows/release-notes.mjs
vendored
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
#!/usr/bin/env node
|
||||||
|
|
||||||
|
import { readFileSync, writeFileSync } from "fs";
|
||||||
|
const tag = process.argv[2].replace("v", "");
|
||||||
|
const log = readFileSync("./CHANGELOG.md", { encoding: "utf-8" }).split("\n");
|
||||||
|
let result = "";
|
||||||
|
let inScope = false;
|
||||||
|
const regex = new RegExp(`^#+ \\[${tag}`);
|
||||||
|
for (let i = 0; i < log.length; i++) {
|
||||||
|
if (regex.test(log[i])) {
|
||||||
|
inScope = true;
|
||||||
|
result += log[i];
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (inScope && /^#+ \[/.test(log[i])) {
|
||||||
|
inScope = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if(inScope){
|
||||||
|
result += `\n${log[i]}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
writeFileSync(`notes-v${tag}.md`, result)
|
77
.github/workflows/release.yml
vendored
77
.github/workflows/release.yml
vendored
@ -1,53 +1,30 @@
|
|||||||
name: Release
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags: ["v*"]
|
tags:
|
||||||
|
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
|
||||||
|
|
||||||
|
name: Create Release
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
github_release:
|
build:
|
||||||
name: Trigger GitHub release
|
name: Create Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout the new tag
|
- name: Checkout code
|
||||||
uses: actions/checkout@v1.0.0
|
uses: actions/checkout@master
|
||||||
|
- name: Get the release version from the tag
|
||||||
- name: Get tag info
|
shell: bash
|
||||||
id: tags
|
if: env.RELEASE_VERSION == ''
|
||||||
uses: babel/actions/get-release-tags@v2
|
run: |
|
||||||
|
echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
||||||
- name: Generate the changelog
|
- name: Generate Release Notes
|
||||||
id: changelog
|
run: |
|
||||||
uses: ./.github/actions/generate-changelog
|
./.github/workflows/release-notes.mjs ${{ env.RELEASE_VERSION }}
|
||||||
with:
|
cat notes-${{ env.RELEASE_VERSION }}.md
|
||||||
from: ${{ steps.tags.outputs.old }}
|
- name: Create Release for Tag
|
||||||
to: ${{ steps.tags.outputs.new }}
|
id: release_tag
|
||||||
env:
|
uses: softprops/action-gh-release@v1
|
||||||
GITHUB_AUTH: ${{ secrets.ACCESS_TOKEN }}
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||||
- name: Create a draft GitHub release
|
with:
|
||||||
uses: babel/actions/publish-github-release@v2
|
body_path: notes-${{ env.RELEASE_VERSION }}.md
|
||||||
with:
|
|
||||||
tag: ${{ steps.tags.outputs.new }}
|
|
||||||
changelog: ${{ steps.changelog.outputs.changelog }}
|
|
||||||
token: ${{ secrets.ACCESS_TOKEN }}
|
|
||||||
|
|
||||||
- name: Check if releasing from master
|
|
||||||
id: is_master
|
|
||||||
uses: babel/actions/ref-matches-branch@v2
|
|
||||||
with:
|
|
||||||
name: master
|
|
||||||
|
|
||||||
- name: Update CHANGELOG.md
|
|
||||||
if: steps.is_master.outputs.result == 1
|
|
||||||
uses: babel/actions/update-changelog@v2
|
|
||||||
with:
|
|
||||||
changelog: ${{ steps.changelog.outputs.changelog }}
|
|
||||||
|
|
||||||
- name: Commit CHANGELOG.md
|
|
||||||
if: steps.is_master.outputs.result == 1
|
|
||||||
run: |
|
|
||||||
git add CHANGELOG.md
|
|
||||||
git -c user.name="wanchun" -c user.email="445436867@qq.com" \
|
|
||||||
commit -m "Add ${{ steps.tags.outputs.new }} to CHANGELOG.md [skip ci]" --no-verify --quiet
|
|
||||||
git push "https://wanchun:${{ secrets.ACCESS_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" master
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user