Update bump_version.yml

This commit is contained in:
Luke Hagar
2023-04-18 13:16:21 -05:00
parent 5cf4bcc6f6
commit 1021fd9033

View File

@@ -75,3 +75,14 @@ jobs:
with:
commit_message: Bump version to ${{ github.event.inputs.version }}
tagging_message: ${{ github.event.inputs.version }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.event.inputs.version }}
release_name: ${{ github.event.inputs.version }}
draft: false
prerelease: false