Skip to content

Commit 0619a01

Browse files
author
Gerald Unterrainer
committed
Merge branch 'master' into develop
2 parents 032b07b + e6ceff4 commit 0619a01

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

.github/workflows/bump-version.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
name: Bump version
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@master
13+
with:
14+
fetch-depth: '0'
15+
- name: Bump version and push tag
16+
uses: anothrNick/github-tag-action@master
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
RELEASE_BRANCHES: master
20+
DEFAULT_BUMP: patch
21+
WITH_V: false

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ deploy:
4747
- provider: releases
4848
skip_cleanup: true
4949
overwrite: true
50-
api_key:
51-
secure: $GITHUB_API_KEY
50+
api_key: $GITHUB_API_KEY
5251
file: $ARTIFACT_ID.$POM_VERSION.zip
5352
on:
5453
tags: true

0 commit comments

Comments
 (0)