forked from tempestphp/tempest-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.2 KB
/
create-gh-release.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
on:
push:
tags:
- "v*"
permissions:
contents: write
id-token: write
name: Create a GitHub release
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# - name: Generate changelog
# uses: orhun/git-cliff-action@v4
# env:
# OUTPUT: CHANGELOG.md
# GITHUB_REPO: ${{ github.repository }}
# - name: Update changelog
# uses: stefanzweifel/git-auto-commit-action@v5
# with:
# file_pattern: 'CHANGELOG.md'
# commit_message: "chore: update changelog"
# branch: main
- name: Generate release notes
uses: orhun/git-cliff-action@v4
id: generate_release_notes
with:
args: -v --latest --strip header
- name: Clean up release notes
run: |
cat ${{ steps.generate_release_notes.outputs.changelog }}
cat ${{ steps.generate_release_notes.outputs.changelog }} | sed '1,2d' > release_notes.txt
- name: Create release
uses: softprops/action-gh-release@v2
with:
body_path: release_notes.txt
tag_name: ${{ github.ref_name }}