make file
Some checks failed
Build / nix-build (native-aarch64, varda) (push) Failing after 3s
Build / nix-build (native-x86_64, telchar) (push) Failing after 4s

This commit is contained in:
Joseph Hanson 2024-07-28 12:48:48 -05:00
parent 3cc2d5ce50
commit 94e2fe736b
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -25,18 +25,18 @@ jobs:
fetch-depth: 0
- name: Set up ssh key folder
run: |
mkdir -p ~/.ssh
mkdir -p $HOME/.ssh
- name: Write ssh key
id: sshkey
uses: https://github.com/timheuer/base64-to-file@v1
with:
encodedString: "${{ secrets.SSH_USER }}"
fileName: id_ed25519
fileDir: ~/.ssh
fileDir: $HOME/.ssh
- name: Make id_ed25519 user only
run: |
ls -la ~/.ssh
chmod 600 ~/.ssh/id_ed25519
ls -la $HOME/.ssh
chmod 600 $HOME/.ssh/id_ed25519
- uses: https://github.com/cachix/cachix-action@v15
if: ${{ !github.event.pull_request.head.repo.fork }}
with: