Skip to content

Commit

Permalink
Github action to release
Browse files Browse the repository at this point in the history
  • Loading branch information
bergo committed Dec 16, 2024
1 parent 1fc3b6b commit cc4dd37
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
release:
name: Release
runs-on: ubuntu-latest

if: github.repository == 'mogic-le/t3x-changelog-info'

steps:

- name: Checkout
uses: actions/checkout@v4

- uses: CSchoel/release-notes-from-changelog@v1

- name: Create GitHub Release
id: create_release
uses: softprops/action-gh-release@v2
with:
body_path: RELEASE.md

0 comments on commit cc4dd37

Please sign in to comment.