File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 52
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
53
env :
54
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
55
61
- name : Setup cache script
56
62
if : ${{ github.secret_source == 'Actions' }}
57
63
run : |
Original file line number Diff line number Diff line change 57
57
linux-pam = prev . linux-pam . overrideAttrs ( old : {
58
58
postInstall = ( old . postInstall or "" ) + ''
59
59
mkdir -p $out/lib/security
60
- cp ${ final . gatekeeper } /lib/security/pam_jwt_pg .so $out/lib/security/
60
+ cp ${ final . gatekeeper } /lib/security/* .so $out/lib/security/
61
61
'' ;
62
62
} ) ;
63
63
} ;
You can’t perform that action at this time.
0 commit comments