Compare commits

...

2 commits

Author SHA1 Message Date
c324aa76c1 ci: testing out deploy
Some checks failed
Build_Deploy / build (push) Has been cancelled
Build_Deploy / deploy_dns (push) Has been cancelled
Build_Deploy / linter (push) Has been cancelled
2024-08-07 11:00:59 +01:00
7c70e4ec05 fix: reformatted flake 2024-08-07 10:51:28 +01:00
2 changed files with 11 additions and 6 deletions

View file

@ -37,4 +37,10 @@ jobs:
needs: [ linter, build ] needs: [ linter, build ]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: nix fmt -- --check . # setup deploy key
- run: |
eval $(ssh-agent -s)
echo "${{ secrets.DEPLOY_KEY }}" | tr -d '\r' | ssh-add - > /dev/null
mkdir -p ~/.ssh
chmod 700 ~/.ssh
- run: colmena apply -v --on @active-dns

View file

@ -7,7 +7,6 @@
# Return to using unstable once the current master is merged in # Return to using unstable once the current master is merged in
# nixpkgs.url = "nixpkgs/nixos-unstable"; # nixpkgs.url = "nixpkgs/nixos-unstable";
# utility stuff # utility stuff
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
agenix.url = "github:ryantm/agenix"; agenix.url = "github:ryantm/agenix";