added fiel cleanup
This commit is contained in:
parent
1bd0a48404
commit
bdc9032167
@ -1,4 +1,4 @@
|
|||||||
name: Java build workflow for captica.expert modules
|
name: Java build workflow
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
name: Publish docker workflow for captica.expert modules
|
name: Publish docker workflow
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
@ -61,4 +61,13 @@ echo "APPLICATION_JAVA_VERSION=\$APPLICATION_JAVA_VERSION" >> \$GITHUB_ENV
|
|||||||
// Link up version file task to bootJar
|
// Link up version file task to bootJar
|
||||||
tasks.named('bootJar').configure {
|
tasks.named('bootJar').configure {
|
||||||
dependsOn writeVersionFile
|
dependsOn writeVersionFile
|
||||||
|
}
|
||||||
|
|
||||||
|
task removeEnvFile(type: Delete) {
|
||||||
|
delete new File(buildDir, 'env-setup.sh')
|
||||||
|
}
|
||||||
|
|
||||||
|
// Link up version file task to bootJar
|
||||||
|
tasks.named('writeVersionFile').configure {
|
||||||
|
dependsOn removeEnvFile
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user