Skip to content

Commit

Permalink
feat: added release generate workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanildoBarauna authored May 10, 2024
1 parent 989bb40 commit 961e37d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release_generate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
- name: Bump version and push tag
id: bump_version
uses: anothrNick/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: minor

- name: Create Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ steps.bump_version.outputs.new_tag }}
release_name: Release ${{ steps.bump_version.outputs.new_tag }}
github_token: ${{ secrets.GITHUB_TOKEN }}
draft: false
prerelease: false

0 comments on commit 961e37d

Please sign in to comment.