Skip to content

Commit

Permalink
dependency update
Browse files Browse the repository at this point in the history
dev release workflow added
  • Loading branch information
Oleg Smelov committed Aug 24, 2023
1 parent b8f6dd5 commit 9ff0547
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/dev-release-java-publish-sonatype-and-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and release Java distributions to sonatype.

on:
push:
tags:
- \d+.\d+.\d+-dev

jobs:
build:
uses: th2-net/.github/.github/workflows/compound-java.yml@main
with:
build-target: 'Sonatype,Docker'
runsOn: ubuntu-latest
gradleVersion: '7'
docker-username: ${{ github.actor }}
devRelease: true
secrets:
sonatypeUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
sonatypePassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
sonatypeSigningKey: ${{ secrets.SONATYPE_GPG_ARMORED_KEY }}
sonatypeSigningPassword: ${{ secrets.SONATYPE_SIGNING_PASSWORD }}
docker-password: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
testImplementation "io.strikt:strikt-core:0.34.1"

testImplementation platform("org.testcontainers:testcontainers-bom:1.18.3")
testImplementation platform("org.testcontainers:testcontainers-bom:1.19.0")
testImplementation "org.testcontainers:testcontainers"
testImplementation "org.testcontainers:mysql"

Expand Down

0 comments on commit 9ff0547

Please sign in to comment.