Skip to content

Commit

Permalink
Merge pull request #73 from stealthrocket/release-ci
Browse files Browse the repository at this point in the history
CI: Generate release with Changelog
  • Loading branch information
Pryz authored Feb 20, 2024
2 parents 1486980 + 9925299 commit 129293e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
changelog:
categories:
- title: New features
labels:
- enhancement
- title: Bug fixes
labels:
- bug
- title: Documentation
labels:
- documentation
- title: Other changes
labels:
- "*"
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Releases

on:
push:
tags:
- "*"

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: "true"

0 comments on commit 129293e

Please sign in to comment.