From 1a343c2f0f1f7dc92ed5fe4477a9b920a64cd311 Mon Sep 17 00:00:00 2001 From: Matthew Horridge Date: Tue, 4 Jun 2024 12:47:29 -0700 Subject: [PATCH] Add CI workflow step to create GitHub release --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c23e97e..a8e5a11 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,6 +26,11 @@ jobs: uses: mickem/gh-action-bump-maven-version@v1 - name: Build with Maven run: mvn --batch-mode -Prelease deploy + - name: Release + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') + with: + generate_release_notes: true env: GPG_PASSPHRASE: ${{secrets.GPG_PASSPHRASE}}