Skip to content

Commit

Permalink
Update version_bump.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
stephendpmurphy authored Sep 29, 2020
1 parent cee466a commit 9e00d04
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,22 @@ jobs:
with:
fetch-depth: '0'
- name: Bump version and push tag
id: bump_version
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
RELEASE_BRANCHES: 'master'

- 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: ${{ bump_version.outputs.new_tag }}
release_name: Release ${{ bump_version.outputs.new_tag }}
body: |
'new release'
draft: false
prerelease: false

0 comments on commit 9e00d04

Please sign in to comment.