Compare commits
No commits in common. "2b9de0bd125815a37be205de40656f84a34f9a17" and "56141d240d04dad51bfa1510281ca9b56d2e2010" have entirely different histories.
2b9de0bd12
...
56141d240d
3 changed files with 25 additions and 6 deletions
|
@ -38,12 +38,14 @@ jobs:
|
|||
# needs: [ linter, build ]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
# setup deploy key
|
||||
- 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
|
||||
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
|
||||
ssh -vvv root@193.1.99.120
|
||||
colmena apply -v --on @active-dns --show-trace
|
||||
shell: bash
|
15
.forgejo/workflows/testing.yaml
Normal file
15
.forgejo/workflows/testing.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
input_to_update:
|
||||
description: 'Flake input to update'
|
||||
required: true
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo All Good
|
||||
- run: echo "${{ inputs.input_to_update }}"
|
||||
shell: bash
|
|
@ -36,6 +36,8 @@ in {
|
|||
targetUser = null;
|
||||
|
||||
tags = ["active-dns" "dns"];
|
||||
|
||||
sshOptions = ["-vv"];
|
||||
};
|
||||
|
||||
networking = {
|
||||
|
|
Loading…
Reference in a new issue