Version 4.3.0 #54
Workflow file for this run
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
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-latest | |
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: false | |
issuesWoLabels: false | |
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: false | |
issuesWoLabels: false | |
pullRequests: true | |
prWoLabels: true | |
author: false | |
verbose: true | |
- name: "🚀 Create GitHub Release" | |
id: create_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 }} | |