We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e6a537 commit 5a65e37Copy full SHA for 5a65e37
.github/workflows/nix-build.yml
@@ -52,6 +52,12 @@ jobs:
52
sudo -E python -c "import os; file = open('/etc/nix/nix-secret-key', 'w'); file.write(os.environ['NIX_SIGN_SECRET_KEY']); file.close()"
53
env:
54
NIX_SIGN_SECRET_KEY: ${{ secrets.NIX_SIGN_SECRET_KEY }}
55
+ - name: Setup SSH for deploy key
56
+ run: |
57
+ mkdir -p ~/.ssh
58
+ echo "${{ secrets.GK_DEPLOY_KEY }}" > ~/.ssh/id_ed25519
59
+ chmod 600 ~/.ssh/id_ed25519
60
+ ssh-keyscan github.com >> ~/.ssh/known_hosts
61
- name: Setup cache script
62
if: ${{ github.secret_source == 'Actions' }}
63
run: |
0 commit comments