We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49c4b86 commit 943d002Copy full SHA for 943d002
.github/workflows/build-and-release.yml
@@ -50,4 +50,16 @@ jobs:
50
tags: ${{ steps.next_tag.outputs.v_patch }}
51
dockerfile: docker/serve.Dockerfile
52
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
65
0 commit comments