Skip to content

Commit c814824

Browse files
Merge pull request #112 from dotty-staging/ci-releases
Create release on GitHub when releasing to Maven
2 parents 6e9c8d2 + 32fbf82 commit c814824

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/actions.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,13 @@ jobs:
4949
--release true \
5050
--signed true
5151
fi
52+
- name: Create GitHub Release
53+
id: create_gh_release
54+
uses: actions/[email protected]
55+
env:
56+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
57+
with:
58+
tag_name: ${{ github.ref }}
59+
release_name: ${{ github.ref }}
60+
body:
61+
draft: false

0 commit comments

Comments
 (0)