Skip to content

Commit

Permalink
Automate release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Aug 29, 2024
1 parent 28d7ee8 commit d44dc30
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Release

on:
push:
tags:
- "ical4j-extensions-*"
- "!ical4j-extensions-*-pre"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# - name: Generate changelog
# run: make changelog
- name: Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
# body_path: CHANGELOG.md

0 comments on commit d44dc30

Please sign in to comment.