ci: testing out deploy
This commit is contained in:
parent
7c70e4ec05
commit
c324aa76c1
1 changed files with 11 additions and 5 deletions
|
@ -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
|
Loading…
Reference in a new issue