test ssh_key
This commit is contained in:
parent
daf3c22cbb
commit
8123379c98
1 changed files with 8 additions and 2 deletions
|
@ -5,12 +5,18 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: |
|
||||
cat <<EOF > $PWD/id_rsa
|
||||
cat <<EOF > .id_rsa
|
||||
${{ secrets.SSH_KEY }}
|
||||
EOF
|
||||
chmod 600 $PWD/id_rsa
|
||||
chmod 600 .id_rsa
|
||||
eval $(ssh-agent)
|
||||
ssh add .id_rsa
|
||||
NIX_SSHOPTS="-i $PWD/id_rsa" nix flake update
|
||||
- run: nix build .#nixosConfigurations.orbi.config.system.build.toplevel
|
||||
- run: nix build .#nixosConfigurations.cream.config.system.build.toplevel
|
||||
- run: nix build .#nixosConfigurations.cherry.config.system.build.toplevel
|
||||
- run: nix build .#nixosConfigurations.chungus.config.system.build.toplevel
|
||||
- if: always()
|
||||
run: |
|
||||
echo $SSH_AGENT_PID
|
||||
kill $SSH_AGENT_PID
|
||||
|
|
Loading…
Reference in a new issue