Skip to content

Commit

Permalink
Migrate azure pipeline to GH-action (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
yannick-roeder authored Feb 7, 2024
1 parent 807c20b commit 29e07b0
Show file tree
Hide file tree
Showing 8 changed files with 192 additions and 141 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ on:
jobs:
build-and-publish:
name: Java Gradle Docker
uses: bakdata/ci-templates/.github/workflows/java-gradle-docker.yaml@1.39.0
uses: bakdata/ci-templates/.github/workflows/java-gradle-docker.yaml@1.40.5
with:
java-version: 17
docker-publisher: "bakdata"
secrets:
docker-username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Release Helm Charts
name: Publish Helm Charts
on:
push:
tags:
- "**"

jobs:
call-workflow-passing-data:
name: Release & Publish Helm chart
name: Publish Helm chart
uses: bakdata/ci-templates/.github/workflows/[email protected]
with:
charts-path: "./charts"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ on:
jobs:
java-gradle-release:
name: Java Gradle
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.39.0
uses: bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.40.5
with:
java-version: 17
release-type: "${{ inputs.release-type }}"
secrets:
github-email: "${{ secrets.GH_EMAIL }}"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ description = "An application to reset the state of Kafka Connect connectors"
plugins {
`java-library`
id("net.researchgate.release") version "2.8.1"
id("com.bakdata.sonar") version "1.1.7"
id("com.bakdata.sonatype") version "1.1.7"
id("com.bakdata.sonar") version "1.1.11"
id("com.bakdata.sonatype") version "1.1.11"
id("org.hildan.github.changelog") version "0.8.0"
id("com.google.cloud.tools.jib") version "3.3.0"
id("io.freefair.lombok") version "5.3.3.3"
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 29e07b0

Please sign in to comment.