ci: fix directory for copyEnv task

This commit is contained in:
2025-04-11 00:52:56 +02:00
parent c9105cafae
commit 2e441bdbf6
2 changed files with 4 additions and 4 deletions

View File

@@ -72,8 +72,8 @@ tasks.named("run") {
tasks.register<Copy>("copyEnv") {
group = "docker"
description = "copy the default dotenv file"
from("/docker")
into("/docker")
from("docker")
into("docker")
rename {
it.removeSuffix(".template")
}