Skip to content

Commit

Permalink
GitHub Actions: added workflow to create GitHub release for tagged ve…
Browse files Browse the repository at this point in the history
…rsions
  • Loading branch information
martinjankoehler committed Dec 11, 2024
1 parent c8f0040 commit 5a1a462
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
changelog:
exclude:
labels:
- ignore-for-release
- github-actions
authors:
- martinjankoehler
categories:
- title: Breaking Changes 🛠
labels:
- breaking-change
- title: Exciting New Features 🎉
labels:
- enhancement
- feature
- title: Bug fixes 🐛
labels:
- bug
- title: Other Changes 🔄
labels:
- "*"

16 changes: 16 additions & 0 deletions .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: GitHub Release Tagged Versions

on:
push:
tags:
- "v*.*.*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Release
uses: softprops/action-gh-release@v2

0 comments on commit 5a1a462

Please sign in to comment.