Skip to content

Commit 050788f

Browse files
committed
feat(release): Automate GitHub releases on tagging
This will read the needed chunk of the CHANGELOG.md file a will use it as contents for the GitHub release.
1 parent d4ef27d commit 050788f

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/release.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Create Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
# Avoid forks to perform this job.
11+
if: github.repository_owner == 'stronk7'
12+
name: Create Release
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Extract release notes from changelog
17+
id: extract-release-notes
18+
uses: yashanand1910/[email protected]
19+
with:
20+
changelog_path: CHANGELOG.md
21+
version: ${{ github.ref }}
22+
23+
- name: Create Release
24+
uses: ncipollo/release-action@v1
25+
with:
26+
body: |
27+
${{ steps.extract-release-notes.outputs.release_notes }}

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ and commits should be formattted using [Conventional Commits](https://www.conven
1111
### Added
1212

1313
- Develop: Get commit messages and changelogs under control at ([1556f88](https://github.com/moodlehq/wiki-rag/commit/1556f8820f48ae465c0bc0dda00327d9bb35f3da))
14-
- Docs: Automate CHANGELOG.md generation at ([6cb1caf](https://github.com/moodlehq/wiki-rag/commit/6cb1caf0de13489452c31ad3f66734d2a758ef09))
14+
- Docs: Automate CHANGELOG.md generation at ([d4ef27d](https://github.com/moodlehq/wiki-rag/commit/d4ef27da410295c0600a334c61595a1982a8f083))
15+
- Release: Automate GitHub releases on tagging at ([2f7951f](https://github.com/moodlehq/wiki-rag/commit/2f7951f08082c1cd0c187ef8998735e1af7251ca))
1516
## [0.5.6] - 2025-03-08
1617

1718
### Added

0 commit comments

Comments
 (0)