-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5868242
commit 49edf14
Showing
4 changed files
with
47 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Build and Publish | ||
|
||
on: | ||
push: | ||
tags: ["**"] | ||
branches: ["**"] | ||
|
||
jobs: | ||
build-and-publish: | ||
name: Java Gradle | ||
uses: bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.39.0 | ||
secrets: | ||
sonar-token: ${{ secrets.SONARCLOUD_TOKEN }} | ||
sonar-organization: ${{ secrets.SONARCLOUD_ORGANIZATION }} | ||
signing-secret-key-ring: ${{ secrets.SONATYPE_SIGNING_SECRET_KEY_RING }} | ||
signing-key-id: ${{ secrets.SONATYPE_SIGNING_KEY_ID }} | ||
signing-password: ${{ secrets.SONATYPE_SIGNING_PASSWORD }} | ||
ossrh-username: ${{ secrets.SONATYPE_OSSRH_USERNAME }} | ||
ossrh-password: ${{ secrets.SONATYPE_OSSRH_PASSWORD }} | ||
github-username: ${{ secrets.GH_USERNAME }} | ||
github-token: ${{ secrets.GH_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Release | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release-type: | ||
description: "The scope of the release (major, minor or patch)." | ||
type: choice | ||
required: true | ||
default: patch | ||
options: | ||
- patch | ||
- minor | ||
- major | ||
|
||
jobs: | ||
java-gradle-release: | ||
name: Java Gradle | ||
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.39.0 | ||
with: | ||
release-type: "${{ inputs.release-type }}" | ||
secrets: | ||
github-email: "${{ secrets.GH_EMAIL }}" | ||
github-username: "${{ secrets.GH_USERNAME }}" | ||
github-token: "${{ secrets.GH_TOKEN }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.* | ||
!.gitignore | ||
!.github | ||
build/ | ||
out/ | ||
bin/ |
This file was deleted.
Oops, something went wrong.