Skip to content

Commit 30f5b39

Browse files
authored
feat: add release on tag push (#13)
- Add release config to automatically format changelog - Enable action run on push of tag Closes #6 Closes #7
1 parent 94d7304 commit 30f5b39

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
changelog:
2+
categories:
3+
- title: New Features 🎉
4+
labels:
5+
- "@type/feature"
6+
- title: Bug Fixes 🐛
7+
labels:
8+
- "@type/bug"
9+
- title: Other Changes
10+
labels:
11+
- "*"

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Deploy
22
on:
33
workflow_dispatch:
4+
push:
5+
tags:
6+
- v*
47

58
permissions:
69
contents: read

0 commit comments

Comments
 (0)