From e6ceff4fc763927bb159672212531eca29824a0f Mon Sep 17 00:00:00 2001 From: Gerald Date: Wed, 28 Apr 2021 13:20:18 +0200 Subject: [PATCH] Create bump-version.yml --- .github/workflows/bump-version.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/bump-version.yml diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml new file mode 100644 index 0000000..8325721 --- /dev/null +++ b/.github/workflows/bump-version.yml @@ -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