this is it
Some checks failed
Build / nix-build (native-aarch64, varda) (push) Failing after 2s
Build / nix-build (native-x86_64, telchar) (push) Failing after 4s

This commit is contained in:
Joseph Hanson 2024-07-28 21:37:29 -05:00
parent c7dcc39138
commit 903d9fc052
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -18,11 +18,28 @@ jobs:
runs-on: ${{ matrix.os }}
env:
PATH: ${{ format('{0}:{1}', '/run/current-system/sw/bin', env.PATH) }}
SSH_DIR: /home/gitea-runner/.ssh
steps:
- name: Checkout repository
uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 0
- name: Set up ssh key folder
run: |
mkdir -p $SSH_DIR
chmod 700 $SSH_DIR
- name: Write ssh key
id: sshkey
uses: https://github.com/timheuer/base64-to-file@v1
with:
encodedString: "${{ secrets.SSH_USER }}"
fileName: id_ed25519
fileDir: /home/gitea-runner/.ssh/
- name: Make id_ed25519 user only
shell: bash
run: |
chmod 600 $SSH_DIR/id_ed25519
- uses: https://github.com/cachix/cachix-action@v15
if: ${{ !github.event.pull_request.head.repo.fork }}
with: