We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 59eaa89 + 943d002 commit 6e3b261Copy full SHA for 6e3b261
.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