chore!: rename NIX_CI_SKIP_CACHE → NIX_CI_FORCE_BUILD

closes #16
This commit is contained in:
TECHNOFAB 2025-02-15 21:35:36 +01:00
parent 1101989255
commit 016e6c9dc7
No known key found for this signature in database
GPG key ID: D06FBA11BA6FF836
2 changed files with 5 additions and 5 deletions

View file

@ -42,7 +42,7 @@ Also makes it possible to split CI parts in a separate module which can be impor
```yaml
# .gitlab-ci.yml
include:
- component: gitlab.com/TECHNOFAB/nix-gitlab-ci/nix-gitlab-ci@1.1.1
- component: gitlab.com/TECHNOFAB/nix-gitlab-ci/nix-gitlab-ci@<version> # recommendation: use the latest version (try not to use latest)
inputs:
# specify inputs here, for example:
image_tag: latest-cachix
@ -55,8 +55,8 @@ include:
To disable any of the provided caches for a pipeline one can set `NIX_CI_DISABLE_CACHE` to
anything non-empty (eg. "yes") when triggering the pipeline.
The `build:nix-ci` job has a different special environment variable `NIX_CI_SKIP_CACHE`
(useful if the generated pipeline is outdated but caching should generally still take place).
The `build:nix-ci` job has a different special environment variable `NIX_CI_FORCE_BUILD`
(useful if the generated pipeline in the cache is outdated, this will build it again).
### Run Jobs locally