Skip to content

Commit

Permalink
Create github release when releasing to sonatype
Browse files Browse the repository at this point in the history
  • Loading branch information
anatoliykmetyuk committed Apr 16, 2020
1 parent dd3cef5 commit fc79f7f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yaml
Expand Up @@ -76,3 +76,14 @@ jobs:
- name: Publish Release
run: |
./project/scripts/sbtPublish.sh ";project root ;publishSigned ;sonatypeBundleRelease"
- name: GitHub Release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body:
draft: false
prerelease: false

0 comments on commit fc79f7f

Please sign in to comment.