diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 4ec71d3..af09175 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -4,7 +4,6 @@ on: push: tags: - 'v*.*.*' - - '!v*.*.*-beta' branches-ignore: - '**' paths-ignore: @@ -53,4 +52,3 @@ jobs: args: release --skip-validate env: GITHUB_TOKEN: ${{ secrets.goreleaser }} - diff --git a/.github/workflows/bump_version.yml b/.github/workflows/bump_version.yml new file mode 100644 index 0000000..b80675b --- /dev/null +++ b/.github/workflows/bump_version.yml @@ -0,0 +1,26 @@ +# MAJOR Version: 1.x + +name: Bump Version + +on: + push: + branches: + - master + tags-ignore: + - '**' + paths-ignore: + - 'docs/**' + +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@1.19.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WITH_V: true + DEFAULT_BUMP: minor \ No newline at end of file