Skip to content

Commit 8efb369

Browse files
authored
switch to github actions
1 parent 984dff9 commit 8efb369

File tree

4 files changed

+26
-79
lines changed

4 files changed

+26
-79
lines changed

.github/workflows/bump-version.yml

-21
This file was deleted.

.github/workflows/pipeline.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: PIPELINE
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
workflow_dispatch:
8+
9+
jobs:
10+
bump:
11+
uses: UnterrainerInformatik/bump-semver-workflow/.github/workflows/workflow.yml@master
12+
build:
13+
name: Build and publish to Maven Central 🚀
14+
needs: bump
15+
uses: UnterrainerInformatik/maven-central-workflow/.github/workflows/workflow.yml@master
16+
with:
17+
major_version: ${{ needs.bump.outputs.major_version }}
18+
minor_version: ${{ needs.bump.outputs.minor_version }}
19+
build_version: ${{ needs.bump.outputs.build_version }}
20+
secrets:
21+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
22+
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
23+
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}
24+
GPG_OWNERTRUST: ${{ secrets.GPG_OWNERTRUST }}
25+
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

.travis.yml

-57
This file was deleted.

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>info.unterrainer.commons</groupId>
77
<artifactId>parent-pom</artifactId>
8-
<version>0.2.5</version>
8+
<version>0.2.29</version>
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>

0 commit comments

Comments
 (0)