mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
CI: disable kaniko cache,
This commit is contained in:
parent
6db0373025
commit
ddd43f4de7
2 changed files with 2 additions and 4 deletions
|
@ -108,7 +108,5 @@ deploy:
|
|||
--dockerfile ${CI_PROJECT_DIR}/Dockerfile
|
||||
--destination ${DOCKER_IMAGE}:${DOCKER_TAG}
|
||||
--snapshotMode=redo
|
||||
--cache=true
|
||||
--cache-ttl=12h
|
||||
dependencies:
|
||||
- test
|
||||
|
|
|
@ -83,13 +83,13 @@ func InitConfig() error {
|
|||
"s3.region": *s3Region,
|
||||
}
|
||||
|
||||
if *s3NoSSL {
|
||||
if *s3NoSSL == true {
|
||||
static["s3.nossl"] = "true"
|
||||
} else {
|
||||
static["s3.nossl"] = "false"
|
||||
}
|
||||
|
||||
if *s3PathStyle {
|
||||
if *s3PathStyle == true {
|
||||
static["s3.pathstyle"] = "true"
|
||||
} else {
|
||||
static["s3.pathstyle"] = "false"
|
||||
|
|
Loading…
Add table
Reference in a new issue