Skip to content

Commit

Permalink
Create bump-version.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
guFalcon authored Apr 28, 2021
1 parent f2bb25a commit 1ddf44c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

name: Bump version
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/github-tag-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_BRANCHES: master
DEFAULT_BUMP: patch
WITH_V: false

0 comments on commit 1ddf44c

Please sign in to comment.