2024-09-12 22:44:44 +02:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
|
|
|
- event: push
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
check:
|
2025-01-23 12:11:57 +01:00
|
|
|
image: docker.io/nixpkgs/nix-flakes:nixos-25.05
|
2024-09-12 22:44:44 +02:00
|
|
|
commands:
|
|
|
|
- nix flake check
|
2025-01-23 12:11:57 +01:00
|
|
|
|
|
|
|
sign:
|
|
|
|
image: docker.io/nixpkgs/nix-flakes:nixos-25.05
|
|
|
|
environment:
|
|
|
|
DB_KEY:
|
|
|
|
from_secret: secure_boot_key
|
|
|
|
DB_CRT:
|
|
|
|
from_secret: secure_boot_crt
|
|
|
|
commands:
|
|
|
|
- ./scripts/sign-release.sh
|
|
|
|
|