Skip to content

Commit

Permalink
Create github release when tagged
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes committed Feb 29, 2024
1 parent a3c5a3c commit b152b0c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,17 @@ jobs:

- name: Codecov
uses: codecov/[email protected]

- name: Create release
uses: actions/create-release@v1
id: create_release
with:
draft: false
prerelease: true
release_name: Release ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
body: |
${{ steps.changelog.outputs.changelog }}
env:
GITHUB_TOKEN: ${{ github.token }}
if: github.event_name != 'workflow_dispatch'

0 comments on commit b152b0c

Please sign in to comment.