Skip to content

Commit 39a98f8

Browse files
committed
ci(github): add workflow for github release
1 parent d18fcb2 commit 39a98f8

2 files changed

Lines changed: 33 additions & 0 deletions

File tree

.github/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
categories:
6+
- title: Breaking Changes 🛠
7+
labels:
8+
- Semver-Major
9+
- breaking-change
10+
- title: Exciting New Features 🎉
11+
labels:
12+
- Semver-Minor
13+
- enhancement
14+
- title: Other Changes
15+
labels:
16+
- "*"

.github/workflows/gh-release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Github Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
- name: Release
15+
uses: softprops/action-gh-release@v1
16+
with:
17+
generate_release_notes: true

0 commit comments

Comments
 (0)