Skip to content

Commit

Permalink
Create release on GitHub when releasing to Maven
Browse files Browse the repository at this point in the history
  • Loading branch information
anatoliykmetyuk committed Apr 28, 2021
1 parent c8f0470 commit 9f27075
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,13 @@ jobs:
--release true \
--signed true
fi
- name: Create GitHub Release
id: create_gh_release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body:
draft: false

0 comments on commit 9f27075

Please sign in to comment.