Skip to content

Commit dbd81a6

Browse files
authored
update to github runners
1 parent 115f5dc commit dbd81a6

File tree

4 files changed

+31
-81
lines changed

4 files changed

+31
-81
lines changed

.github/workflows/bump-version.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/pipeline.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
13+
build:
14+
name: Build and publish to Maven Central 🚀
15+
needs: bump
16+
uses: UnterrainerInformatik/maven-central-workflow/.github/workflows/workflow.yml@master
17+
with:
18+
major_version: ${{ needs.bump.outputs.major_version }}
19+
minor_version: ${{ needs.bump.outputs.minor_version }}
20+
build_version: ${{ needs.bump.outputs.build_version }}
21+
maven_profiles: release-to-sonatype
22+
maven_args: -Dmaven.test.skip=true
23+
secrets:
24+
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
25+
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
26+
GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}
27+
GPG_OWNERTRUST: ${{ secrets.GPG_OWNERTRUST }}
28+
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

.travis.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<parent>
44
<groupId>info.unterrainer.commons</groupId>
55
<artifactId>parent-pom</artifactId>
6-
<version>0.2.1</version>
6+
<version>1.0.1</version>
77
</parent>
88

99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>rdb-utils</artifactId>
11-
<version>0.2.4</version>
11+
<version>1.0.0</version>
1212
<name>RdbUtils</name>
1313
<packaging>jar</packaging>
1414

@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>info.unterrainer.commons</groupId>
2424
<artifactId>jre-utils</artifactId>
25-
<version>0.3.6</version>
25+
<version>1.0.1</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>jakarta.persistence</groupId>

0 commit comments

Comments
 (0)