From 9f27075f80418ce11a4dacbffaa24e9309c9adac Mon Sep 17 00:00:00 2001 From: Anatolii Kmetiuk Date: Wed, 28 Apr 2021 12:26:06 +0200 Subject: [PATCH] Create release on GitHub when releasing to Maven --- .github/workflows/actions.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 22b7f8a..69d1844 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -49,3 +49,13 @@ jobs: --release true \ --signed true fi + - name: Create GitHub Release + id: create_gh_release + uses: actions/create-release@v1.1.4 + 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