Skip to content

Commit c2df8e9

Browse files
committed
Release CI: Checkout code before creating release
1 parent db4d91b commit c2df8e9

2 files changed

Lines changed: 44 additions & 0 deletions

File tree

.github/release.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
3+
4+
changelog:
5+
exclude:
6+
labels:
7+
- duplicate
8+
- invalid
9+
- modulesync
10+
- question
11+
- skip-changelog
12+
- wont-fix
13+
- wontfix
14+
- github_actions
15+
16+
categories:
17+
- title: Breaking Changes 🛠
18+
labels:
19+
- backwards-incompatible
20+
21+
- title: New Features 🎉
22+
labels:
23+
- enhancement
24+
25+
- title: Bug Fixes 🐛
26+
labels:
27+
- bug
28+
29+
- title: Documentation Updates 📚
30+
labels:
31+
- documentation
32+
- docs
33+
34+
- title: Dependency Updates ⬆️
35+
labels:
36+
- dependencies
37+
38+
- title: Other Changes
39+
labels:
40+
- "*"

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
name: Create GitHub release
1313
if: ${{ github.repository_owner == 'voxpupuli' }}
1414
steps:
15+
- name: checkout code
16+
uses: actions/checkout@v4
17+
with:
18+
fetch-depth: 0
1519
- name: Create Release Page
1620
shell: bash
1721
env:

0 commit comments

Comments
 (0)