blob: 58ea28ed60e89e82d440278e9d26bfc705192b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
name: "Create Release"
on:
push:
branches: ["main"]
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkouts repo
uses: actions/checkout@v4
- name: Conventional changelog action
id: changelog
uses: TriPSs/conventional-changelog-action@v5
with:
skip-on-empty: false
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
if: ${{ steps.changelog.outputs.skipped == 'false' }}
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
token: ${{ secrets.CHANGELOG_SECRET }}
tag: ${{ steps.changelog.outputs.tag }}
name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}
|