Skip to content

Commit

Permalink
add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dpo committed Nov 15, 2022
1 parent bd5500e commit 028ce7e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
on:
push:
branches:
- master
- main

jobs:
release-on-push:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: rymndhng/release-on-push-action@master
id: release
with:
# add a label to your pull request to change the default behavior:
# release:major
# release:minor
# release:patch
# norelease
bump_version_scheme: patch
tag_prefix: v
release_body: ""
use_github_release_notes: true

0 comments on commit 028ce7e

Please sign in to comment.