Skip to content

Commit 47634cf

Browse files
Merge branch 'dev'
2 parents c107098 + 8ab5790 commit 47634cf

File tree

8 files changed

+543
-311
lines changed

8 files changed

+543
-311
lines changed

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Releases
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
changelog:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: conventional Changelog Action
14+
id: changelog
15+
uses: TriPSs/conventional-changelog-action@v5
16+
with:
17+
preset: "conventionalcommits"
18+
github-token: ${{ secrets.github_token }}
19+
git-user-email: "office@baumrock.com"
20+
21+
- name: create release
22+
uses: actions/create-release@v1
23+
if: ${{ steps.changelog.outputs.skipped == 'false' }}
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.github_token }}
26+
with:
27+
tag_name: ${{ steps.changelog.outputs.tag }}
28+
release_name: ${{ steps.changelog.outputs.tag }}
29+
body: ${{ steps.changelog.outputs.clean_changelog }}

0 commit comments

Comments
 (0)