Skip to content

Commit b8e1c56

Browse files
ci: fix publish workflow again
1 parent 9db9b08 commit b8e1c56

2 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/cliff.toml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,19 @@ body = """
44
## Core
55
66
{% for commit in commits|filter(attribute="group", value = "core") %}
7-
- {{ commit.message|split(pat="\n")|first }}
8-
{% else %}
9-
N/A
7+
- {{ commit.message|split(pat="\n")|first }} ({{ commit.id }}){% else %}N/A
108
{% endfor %}
119
1210
## Serialization
1311
1412
{% for commit in commits|filter(attribute="group", value = "serialization") %}
15-
- {{ commit.message|split(pat="\n")|first }}
16-
{% else %}
17-
N/A
13+
- {{ commit.message|split(pat="\n")|first }} ({{ commit.id }}){% else %}N/A
1814
{% endfor %}
1915
2016
## Misc
2117
2218
{% for commit in commits|filter(attribute="group", value = "misc") %}
23-
- {{ commit.message|split(pat="\n")|first }}
24-
{% else %}
25-
N/A
19+
- {{ commit.message|split(pat="\n")|first }} ({{ commit.id }}){% else %}N/A
2620
{% endfor %}
2721
"""
2822
footer = ""

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ jobs:
130130
runs-on: ubuntu-latest
131131
name: Create GitHub release
132132
needs: [publish]
133+
permissions:
134+
contents: write
133135
steps:
134136
- name: Checkout repository
135137
uses: actions/checkout@v4

0 commit comments

Comments
 (0)