-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add github workflow for auto release
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: Create release | ||
|
||
on: | ||
push: | ||
tags: | ||
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
|
||
jobs: | ||
build: | ||
name: "🚀 Release" | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- name: "Check-out" | ||
uses: actions/checkout@v1 | ||
- name: "Update Release CHANGELOG" | ||
id: update-release-changelog | ||
uses: heinrichreimer/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
onlyLastTag: true | ||
stripHeaders: false | ||
base: "CHANGELOG.md" | ||
headerLabel: "# Changelog" | ||
breakingLabel: '### Breaking' | ||
enhancementLabel: '### Enhancements' | ||
stripGeneratorNotice: true | ||
bugsLabel: '### Fixes' | ||
issues: true | ||
issuesWoLabels: true | ||
pullRequests: true | ||
prWoLabels: true | ||
author: false | ||
verbose: true | ||
- name: Commit CHANGELOG Changes | ||
run: | | ||
git add . | ||
git config user.name "zihe.jia" | ||
git config user.email "[email protected]" | ||
git commit -m "Update CHANGELOG" | ||
- name: Push CHANGELOG changes | ||
uses: ad-m/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: master | ||
force: true | ||
- name: "Prepare for the Github Release" | ||
id: generate-release-changelog | ||
uses: heinrichreimer/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
output: "output.md" | ||
headerLabel: "# Changelog" | ||
onlyLastTag: true | ||
stripHeaders: false | ||
breakingLabel: '### Breaking' | ||
enhancementLabel: '### Enhancements' | ||
stripGeneratorNotice: true | ||
bugsLabel: '### Fixes' | ||
issues: true | ||
issuesWoLabels: true | ||
pullRequests: true | ||
prWoLabels: true | ||
author: false | ||
verbose: true | ||
- name: "🚀 Create GitHub Release" | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: Release ${{ github.ref }} | ||
body: ${{ steps.generate-release-changelog.outputs.changelog }} |