Skip to content

Commit 943d002

Browse files
committed
Added create release job
1 parent 49c4b86 commit 943d002

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build-and-release.yml

+12
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,16 @@ jobs:
5050
tags: ${{ steps.next_tag.outputs.v_patch }}
5151
dockerfile: docker/serve.Dockerfile
5252
tag_with_ref: true
53+
- name: 'Create Release'
54+
id: create_release
55+
uses: actions/create-release@v1
56+
env:
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
with:
59+
tag_name: "${{ steps.next_tag.outputs.v_patch }}"
60+
release_name: "${{ steps.next_tag.outputs.v_patch }}"
61+
body: |
62+
Automatic release for ${{ steps.next_tag.outputs.v_patch }}
63+
draft: false
64+
prerelease: false
5365

0 commit comments

Comments
 (0)