17 lines
481 B
YAML
17 lines
481 B
YAML
pipeline:
|
|
|
|
check:
|
|
image: nixpkgs/nix-flakes:latest
|
|
pull: true
|
|
commands:
|
|
- nix --no-sandbox flake metadata
|
|
- nix --no-sandbox develop --eval-store ./nix-store -c statix check ./nixos
|
|
secrets: [ github_token ]
|
|
|
|
push_to_github:
|
|
image: nixpkgs/nix-flakes:latest
|
|
pull: true
|
|
commands: |
|
|
git remote add github https://cyplo:$GITHUB_TOKEN@github.com/cyplo/dotfiles.git
|
|
git push github --all --force
|
|
secrets: [ github_token ]
|