Updated dependencies and migrated to th2 gradle plugin 0.0.6
(#33)
#7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish Docker image to Github Container Registry ghcr.io and publish snapshot jar to sonatype | |
on: | |
push: | |
branches-ignore: | |
- master | |
- version-* | |
- dependabot** | |
paths-ignore: | |
- README.md | |
jobs: | |
build-job: | |
uses: th2-net/.github/.github/workflows/compound-java-dev.yml@main | |
with: | |
build-target: 'Sonatype,Docker' | |
docker-username: ${{ github.actor }} | |
secrets: | |
docker-password: ${{ secrets.GITHUB_TOKEN }} | |
sonatypeUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }} | |
sonatypePassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }} | |
sonatypeSigningKey: ${{ secrets.SONATYPE_GPG_ARMORED_KEY }} | |
sonatypeSigningPassword: ${{ secrets.SONATYPE_SIGNING_PASSWORD }} | |
nvd-api-key: ${{ secrets.NVD_APIKEY }} |