Skip to content

Commit

Permalink
Merge pull request #184 from stelligent/devops/release_automation
Browse files Browse the repository at this point in the history
Devops/release automation
  • Loading branch information
Keith Monihen committed Apr 14, 2020
2 parents a7fb451 + a2c6575 commit 7988692
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build_and_deploy.yml
Expand Up @@ -4,7 +4,6 @@ on:
push:
tags:
- 'v*.*.*'
- '!v*.*.*-beta'
branches-ignore:
- '**'
paths-ignore:
Expand Down Expand Up @@ -53,4 +52,3 @@ jobs:
args: release --skip-validate
env:
GITHUB_TOKEN: ${{ secrets.goreleaser }}

26 changes: 26 additions & 0 deletions .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

0 comments on commit 7988692

Please sign in to comment.