summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-11-01 15:30:08 +0100
committerPaul-Christian Volkmer2024-11-01 15:32:40 +0100
commit998989d319ee4d5c80313eb38cda2f0832cdb1b8 (patch)
tree7be85af3ec14e534d263832c3a2218ce0d682bd0
parent46ba565c296b1672882f403f8d9e9a34748051ea (diff)
parente95fa2fb1238f10db64930ab9b304f3148868769 (diff)
Merge branch '0.9.x'
-rw-r--r--.github/workflows/deploy.yml6
-rw-r--r--build.gradle.kts6
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index b703b73..65b5e78 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -30,6 +30,6 @@ jobs:
- name: Execute image build and push
run: |
./gradlew bootBuildImage
- docker tag ghcr.io/ccc-mf/etl-processor ghcr.io/ccc-mf/etl-processor:${{ github.ref_name }}
- docker push ghcr.io/ccc-mf/etl-processor
- docker push ghcr.io/ccc-mf/etl-processor:${{ github.ref_name }} \ No newline at end of file
+ docker tag ghcr.io/${{ github.repository }} ghcr.io/${{ github.repository }}:${{ github.ref_name }}
+ docker push ghcr.io/${{ github.repository }}
+ docker push ghcr.io/${{ github.repository }}:${{ github.ref_name }} \ No newline at end of file
diff --git a/build.gradle.kts b/build.gradle.kts
index 51050f4..4e6499b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -12,7 +12,7 @@ plugins {
jacoco
}
-group = "de.ukw.ccc"
+group = "dev.dnpm"
version = "0.10.0-SNAPSHOT"
var versions = mapOf(
@@ -134,7 +134,7 @@ tasks.jacocoTestReport {
}
tasks.named<BootBuildImage>("bootBuildImage") {
- imageName.set("ghcr.io/ccc-mf/etl-processor")
+ imageName.set("ghcr.io/pcvolkmer/etl-processor")
// Binding for CA Certs
bindings.set(listOf(
@@ -144,7 +144,7 @@ tasks.named<BootBuildImage>("bootBuildImage") {
environment.set(environment.get() + mapOf(
// Enable this line to embed CA Certs into image on build time
//"BP_EMBED_CERTS" to "true",
- "BP_OCI_SOURCE" to "https://github.com/CCC-MF/etl-processor",
+ "BP_OCI_SOURCE" to "https://github.com/pcvolkmer/etl-processor",
"BP_OCI_LICENSES" to "AGPLv3",
"BP_OCI_DESCRIPTION" to "ETL Processor for bwHC MTB files"
))