Compare commits
2 commits
a7d9dd6c5c
...
c324aa76c1
Author | SHA1 | Date | |
---|---|---|---|
c324aa76c1 | |||
7c70e4ec05 |
2 changed files with 11 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
|||
name: Build_Deploy
|
||||
|
||||
on:
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["Update_Flake"]
|
||||
workflows: [ "Update_Flake" ]
|
||||
types:
|
||||
- completed
|
||||
push:
|
||||
|
@ -30,11 +30,17 @@ jobs:
|
|||
- run: colmena build -v --on @active-core
|
||||
- run: colmena build -v --on @active
|
||||
- run: colmena build -v --on @active-ext
|
||||
- run: colmena build -v --on @active-gitlab
|
||||
- run: colmena build -v --on @active-gitlab
|
||||
|
||||
deploy_dns:
|
||||
runs-on: nix
|
||||
needs: [linter, build]
|
||||
needs: [ linter, build ]
|
||||
steps:
|
||||
- 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
|
|
@ -7,7 +7,6 @@
|
|||
# Return to using unstable once the current master is merged in
|
||||
# nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
|
||||
|
||||
# utility stuff
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
agenix.url = "github:ryantm/agenix";
|
||||
|
|
Loading…
Reference in a new issue