Skip to content

Commit

Permalink
create release (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
SashaZezulinsky authored Feb 10, 2022
1 parent e6c4b8f commit b4cf7ec
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v1
- name: Bump version
id: version_bump
uses: anothrNick/github-tag-action@1.13.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: "patch"
RELEASE_BRANCHES: "master"
WITH_V: true
- name: Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
tag_name: ${{steps.version_bump.outputs.tag}}
release_name: go-goldilocks ${{steps.version_bump.outputs.tag}}
draft: false
prerelease: false

0 comments on commit b4cf7ec

Please sign in to comment.