Skip to content

Commit 05fc94d

Browse files
Merge pull request #61 from dotty-staging/ci-releases
Create release on GitHub when releasing to Maven
2 parents 8613a8d + 9f27075 commit 05fc94d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/actions.yml

+10
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/create-release@v1.1.4
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)