Skip to content

Commit

Permalink
Merge pull request #35 from dotty-staging/ci-releases
Browse files Browse the repository at this point in the history
Create release on GitHub when releasing to Maven
  • Loading branch information
anatoliykmetyuk committed May 4, 2021
2 parents 01c19d9 + 28507bf commit 2d2a15d
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/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

0 comments on commit 2d2a15d

Please sign in to comment.