This commit is contained in:
parent
2ccb75475e
commit
b60b609d6f
1 changed files with 26 additions and 19 deletions
|
@ -38,5 +38,12 @@ jobs:
|
|||
# needs: [ linter, build ]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: colmena apply -v --on @active-dns --show-trace
|
||||
- run: |
|
||||
whoami
|
||||
eval $(ssh-agent -s)
|
||||
echo "${{ secrets.DEPLOY_KEY }}" | tr -d '\r' | ssh-add -
|
||||
mkdir -p ~/.ssh
|
||||
chmod 700 ~/.ssh
|
||||
echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
|
||||
colmena apply -v --on @active-dns --show-trace
|
||||
shell: bash
|
Loading…
Reference in a new issue