test
Some checks failed
ssh-test / ssh-test (push) Failing after 55s

This commit is contained in:
iFargle 2023-12-08 20:05:58 +09:00
parent 54942bbc07
commit 46ec29ac62

View file

@ -15,17 +15,13 @@ jobs:
run: | run: |
apk update apk update
apk add git nodejs nix --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ apk add git nodejs nix --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/
- name: "Setup: SSH"
run: |
echo ${secrets.SSH_PUBLIC_KEY} > ~/.ssh/id_ed25519.pub
echo ${secrets.SSH_PRIVATE_KEY} > ~/.ssh/id_ed25519
cat ~/.ssh/id_ed25519.pub
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: "Directory Structure" - name: "Directory Structure"
run: | run: |
ls ${{ github.workspace }}/* ls ${{ github.workspace }}/*
- name: "Runner: Node Info" - name: "Runner: Node Info"
run: | run: |
pwd
id id
uname -a uname -a
hostname hostname
@ -33,6 +29,11 @@ jobs:
- name: "Nix Version" - name: "Nix Version"
run: | run: |
nix --version nix --version
- name: "Setup: SSH"
run: |
echo ${secrets.SSH_PUBLIC_KEY} > ~/.ssh/id_ed25519.pub
echo ${secrets.SSH_PRIVATE_KEY} > ~/.ssh/id_ed25519
cat ~/.ssh/id_ed25519.pub
# - name: "Nix build" # - name: "Nix build"
# run: | # run: |
# echo "Running Nix Build" # echo "Running Nix Build"