diff options
| author | Marie <github@yuugi.dev> | 2025-02-03 01:19:32 +0000 |
|---|---|---|
| committer | Marie <github@yuugi.dev> | 2025-02-03 01:19:32 +0000 |
| commit | a4f4efc8123781b25157ab8750f29501a822fc39 (patch) | |
| tree | acf5cf9bff4636329092d1e2f47f92d741c2b7b3 | |
| parent | fix: disallow corepack from fetching latest manager version instead use speci... (diff) | |
| download | sharkey-a4f4efc8123781b25157ab8750f29501a822fc39.tar.gz sharkey-a4f4efc8123781b25157ab8750f29501a822fc39.tar.bz2 sharkey-a4f4efc8123781b25157ab8750f29501a822fc39.zip | |
fix(ci): apply `COREPACK_DEFAULT_TO_LATEST: 0`
| -rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d0f4d94948..718914140c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,7 @@ testCommit: - redis variables: POSTGRES_PASSWORD: ci + COREPACK_DEFAULT_TO_LATEST: 0 script: - apt-get update && apt-get install -y git wget curl build-essential python3 ffmpeg - cp .config/ci.yml .config/default.yml @@ -75,6 +76,8 @@ buildDocker: image: name: gcr.io/kaniko-project/executor:debug entrypoint: [""] + variables: + COREPACK_DEFAULT_TO_LATEST: 0 script: - >- /kaniko/executor |