Skip to content

Commit

Permalink
Add automatic versioning workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kanimaru committed Mar 1, 2023
1 parent fd71e62 commit 4105680
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release on Merge To Master
on:
push:
branches:
- master

jobs:
release-on-push:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: rymndhng/release-on-push-action@master
with:
bump_version_scheme: patch
tag_prefix: v
use_github_release_notes: true

0 comments on commit 4105680

Please sign in to comment.